-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuiltInModules.go
More file actions
88 lines (87 loc) · 2.92 KB
/
builtInModules.go
File metadata and controls
88 lines (87 loc) · 2.92 KB
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
84
85
86
87
88
package main
var BuiltInModules = map[string]bool{
"node:assert": true,
"assert": true,
"node:async_hooks": true,
"async_hooks": true,
"node:buffer": true,
"buffer": true,
"node:child_process": true,
"child_process": true,
"node:cluster": true,
"cluster": true,
"node:console": true,
"console": true,
"node:constants": true,
"constants": true,
"node:crypto": true,
"crypto": true,
"node:dgram": true,
"dgram": true,
"node:diagnostics_channel": true,
"diagnostics_channel": true,
"node:dns": true,
"dns": true,
"node:domain": true,
"domain": true,
"node:events": true,
"events": true,
"node:fs": true,
"fs": true,
"node:http": true,
"http": true,
"node:http2": true,
"http2": true,
"node:https": true,
"https": true,
"node:inspector": true,
"inspector": true,
"node:module": true,
"module": true,
"node:net": true,
"net": true,
"node:os": true,
"os": true,
"node:path": true,
"path": true,
"node:perf_hooks": true,
"perf_hooks": true,
"node:process": true,
"process": true,
"node:querystring": true,
"querystring": true,
"node:quic": true,
"node:readline": true,
"readline": true,
"node:repl": true,
"repl": true,
"node:sea": true,
"node:sqlite": true,
"node:stream": true,
"stream": true,
"node:string_decoder": true,
"string_decoder": true,
"node:test": true,
"node:timers": true,
"timers": true,
"node:tls": true,
"tls": true,
"node:trace_events": true,
"trace_events": true,
"node:tty": true,
"tty": true,
"node:url": true,
"url": true,
"node:util": true,
"util": true,
"node:v8": true,
"v8": true,
"node:vm": true,
"vm": true,
"node:wasi": true,
"wasi": true,
"node:worker_threads": true,
"worker_threads": true,
"node:zlib": true,
"zlib": true,
}