-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuiltins.js
83 lines (73 loc) · 1.24 KB
/
builtins.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
const assert = require('nanoassert')
/**
* Normalize a key into a string.
* @private
*/
function normalizeKey(key) {
if (key && 'string' !== typeof key && 'function' === typeof key.toString) {
key = key.toString()
}
// istanbul ignore next
if ('string' === typeof key) {
key = key.trim()
}
return key
}
/**
* A special map of built in types.
* @class BuiltIns
* @extends Map
*/
class BuiltIns {
/**
* `CAT` builtin type.
* @static
* @accessor
* @type {CAT}
*/
static get CAT() {
return require('./cat').CAT
}
/**
* `FORM` builtin type.
* @static
* @accessor
* @type {Form}
*/
static get FORM() {
return require('./form').Form
}
/**
* `LIST` builtin type.
* @static
* @accessor
* @type {List}
*/
static get LIST() {
return require('./list').List
}
/**
* `PROP` builtin type.
* @static
* @accessor
* @type {Prop}
*/
static get PROP() {
return require('./prop').Prop
}
/**
* Guarded `Map.prototype.get()`
* @param {String|Buffer|ID} key
* @return {Mixed}
*/
get(key) {
key = normalizeKey(key)
return BuiltIns[key]
}
}
/**
* Module exports.
*/
module.exports = Object.assign(new BuiltIns(), {
BuiltIns
})