forked from tholian-network/stealth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MODULE.mjs
60 lines (49 loc) · 1.46 KB
/
MODULE.mjs
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
54
55
56
57
58
59
import { describe, finish } from '../../covert/index.mjs';
import * as BASE from '../../base/index.mjs';
describe('MODULE', function(assert) {
assert(typeof BASE['Array'], 'function');
assert(typeof BASE['Boolean'], 'function');
assert(typeof BASE['Buffer'], 'function');
assert(typeof BASE['Date'], 'function');
assert(typeof BASE['Emitter'], 'function');
assert(typeof BASE['Function'], 'function');
assert(typeof BASE['Number'], 'function');
assert(typeof BASE['Object'], 'function');
assert(typeof BASE['RegExp'], 'function');
assert(typeof BASE['String'], 'function');
assert(typeof BASE['console'], 'object');
assert(typeof BASE['isArray'], 'function');
assert(typeof BASE['isBoolean'], 'function');
assert(typeof BASE['isBuffer'], 'function');
assert(typeof BASE['isDate'], 'function');
assert(typeof BASE['isEmitter'], 'function');
assert(typeof BASE['isFunction'], 'function');
assert(typeof BASE['isNumber'], 'function');
assert(typeof BASE['isObject'], 'function');
assert(typeof BASE['isRegExp'], 'function');
assert(typeof BASE['isString'], 'function');
assert(Object.keys(BASE), [
'Array',
'Boolean',
'Buffer',
'Date',
'Emitter',
'Function',
'Number',
'Object',
'RegExp',
'String',
'console',
'isArray',
'isBoolean',
'isBuffer',
'isDate',
'isEmitter',
'isFunction',
'isNumber',
'isObject',
'isRegExp',
'isString'
]);
});
export default finish('base/MODULE');