• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2
3const list = [
4  'async_hooks',
5  'assert',
6  'buffer',
7  'child_process',
8  'console',
9  'constants',
10  'crypto',
11  'cluster',
12  'dgram',
13  'dns',
14  'domain',
15  'events',
16  'fs',
17  'http',
18  'http2',
19  'https',
20  'module',
21  'net',
22  'os',
23  'path',
24  'perf_hooks',
25  'process',
26  'punycode',
27  'querystring',
28  'readline',
29  'repl',
30  'stream',
31  'string_decoder',
32  'timers',
33  'tls',
34  'tty',
35  'url',
36  'util',
37  'vm',
38  'zlib',
39];
40
41for (let i = 0; i < list.length; ++i) {
42  const item = list[i];
43  require(item);
44}
45