Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2020-04-27 23:20:52 +0300
committerJames M Snell <jasnell@gmail.com>2020-04-30 00:35:10 +0300
commit80b9777888d7af1a20195d1e0393b31a520a8345 (patch)
tree8c25482d24cd94c343991c5f8ec3aa7dab42d437 /lib/internal/modules
parent1d69c6f47415949a2a46b72506383c2f6fc5131b (diff)
lib: cosmetic change to builtinLibs list for maintainability
This is a largely cosmetic change suggested for easier maintainability of the builtinLibs list. While the QUIC PR no longer modifies this list, the original version of the PR did and the fact that all of the entries were bundled up into the same lines meant that adding one forced a larger change to all. With this PR, when we want to add a new built-in, it won't impact any of the others. PR-URL: https://github.com/nodejs/node/pull/33106 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'lib/internal/modules')
-rw-r--r--lib/internal/modules/cjs/helpers.js38
1 files changed, 33 insertions, 5 deletions
diff --git a/lib/internal/modules/cjs/helpers.js b/lib/internal/modules/cjs/helpers.js
index 2d73219a777..2f62c8623e2 100644
--- a/lib/internal/modules/cjs/helpers.js
+++ b/lib/internal/modules/cjs/helpers.js
@@ -110,11 +110,39 @@ function stripBOM(content) {
}
const builtinLibs = [
- 'assert', 'async_hooks', 'buffer', 'child_process', 'cluster', 'crypto',
- 'dgram', 'dns', 'domain', 'events', 'fs', 'http', 'http2', 'https', 'net',
- 'os', 'path', 'perf_hooks', 'punycode', 'querystring', 'readline', 'repl',
- 'stream', 'string_decoder', 'tls', 'trace_events', 'tty', 'url', 'util',
- 'v8', 'vm', 'worker_threads', 'zlib'
+ 'assert',
+ 'async_hooks',
+ 'buffer',
+ 'child_process',
+ 'cluster',
+ 'crypto',
+ 'dgram',
+ 'dns',
+ 'domain',
+ 'events',
+ 'fs',
+ 'http',
+ 'http2',
+ 'https',
+ 'net',
+ 'os',
+ 'path',
+ 'perf_hooks',
+ 'punycode',
+ 'querystring',
+ 'readline',
+ 'repl',
+ 'stream',
+ 'string_decoder',
+ 'tls',
+ 'trace_events',
+ 'tty',
+ 'url',
+ 'util',
+ 'v8',
+ 'vm',
+ 'worker_threads',
+ 'zlib',
];
if (internalBinding('config').experimentalWasi) {