UNPKG

309 BJavaScriptView Raw
1// from x => typeof x
2const NUL = 'null';
3const UND = 'undefined';
4const BOO = 'boolean';
5const NUM = 'number';
6const BIG = 'bigint';
7const STR = 'string';
8const OBJ = 'object';
9const FUN = 'function';
10const SYM = 'symbol';
11const DEF = 'default';
12
13export { BIG, BOO, DEF, FUN, NUL, NUM, OBJ, STR, SYM, UND };