UNPKG

517 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, '__esModule', { value: true });
4
5// from x => typeof x
6const NUL = 'null';
7const UND = 'undefined';
8const BOO = 'boolean';
9const NUM = 'number';
10const BIG = 'bigint';
11const STR = 'string';
12const OBJ = 'object';
13const FUN = 'function';
14const SYM = 'symbol';
15const DEF = 'default';
16
17exports.BIG = BIG;
18exports.BOO = BOO;
19exports.DEF = DEF;
20exports.FUN = FUN;
21exports.NUL = NUL;
22exports.NUM = NUM;
23exports.OBJ = OBJ;
24exports.STR = STR;
25exports.SYM = SYM;
26exports.UND = UND;