node_builtins/lib.rs
1pub static BUILTINS: [&str; 33] = [
2 "assert",
3 "buffer",
4 "child_process",
5 "cluster",
6 "console",
7 "constants",
8 "crypto",
9 "dgram",
10 "dns",
11 "domain",
12 "events",
13 "fs",
14 "http",
15 "https",
16 "module",
17 "net",
18 "os",
19 "path",
20 "process",
21 "punycode",
22 "querystring",
23 "readline",
24 "repl",
25 "stream",
26 "string_decoder",
27 "timers",
28 "tls",
29 "tty",
30 "url",
31 "util",
32 "v8",
33 "vm",
34 "zlib",
35];