-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathdataTypes.js
53 lines (47 loc) · 1.29 KB
/
dataTypes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* Author: Alexandre Havrileck (Oxyno-zeta)
* Date: 27/02/18
* Licence: See Readme
*/
/* ************************************* */
/* ******** IMPORTS ******** */
/* ************************************* */
/* ************************************* */
/* ******** VARIABLES ******** */
/* ************************************* */
const ERROR = 'Error';
const OBJECT = 'Object';
const ARRAY = 'Array';
const STRING = 'String';
const NUMBER = 'Number';
const BOOLEAN = 'Boolean';
const DATE = 'Date';
const NULL = 'Null';
const UNDEFINED = 'Undefined';
const FUNCTION = 'Function';
const SYMBOL = 'Symbol';
/* ************************************* */
/* ******** CLASSES ******** */
/* ************************************* */
/* ************************************* */
/* ******** PRIVATE FUNCTIONS ******** */
/* ************************************* */
/* ************************************* */
/* ******** PUBLIC FUNCTIONS ******** */
/* ************************************* */
/* ************************************* */
/* ******** EXPORTS ******** */
/* ************************************* */
export default {
ERROR,
OBJECT,
ARRAY,
STRING,
NUMBER,
BOOLEAN,
DATE,
NULL,
UNDEFINED,
FUNCTION,
SYMBOL,
};