summaryrefslogtreecommitdiff
path: root/lib/internal/module.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/internal/module.js')
-rw-r--r--lib/internal/module.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/internal/module.js b/lib/internal/module.js
index a12af12f3e..2f38618daa 100644
--- a/lib/internal/module.js
+++ b/lib/internal/module.js
@@ -51,10 +51,12 @@ function stripBOM(content) {
return content;
}
-exports.builtinLibs = ['assert', 'buffer', 'child_process', 'cluster',
- 'crypto', 'dgram', 'dns', 'domain', 'events', 'fs', 'http', 'https', 'net',
- 'os', 'path', 'punycode', 'querystring', 'readline', 'repl', 'stream',
- 'string_decoder', 'tls', 'tty', 'url', 'util', 'v8', 'vm', 'zlib'];
+exports.builtinLibs = [
+ 'assert', 'buffer', 'child_process', 'cluster', 'crypto', 'dgram', 'dns',
+ 'domain', 'events', 'fs', 'http', 'https', 'net', 'os', 'path', 'punycode',
+ 'querystring', 'readline', 'repl', 'stream', 'string_decoder', 'tls', 'tty',
+ 'url', 'util', 'v8', 'vm', 'zlib'
+];
function addBuiltinLibsToObject(object) {
// Make built-in modules available directly (loaded lazily).