0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-22 15:47:56 +01:00

repl: remove 'repl' from automatic loading libs

In repl, calling `repl` twice shows the following message:
```
> repl
A different "repl" already exists globally
```
This commit is contained in:
Ryunosuke SATO 2012-12-11 19:14:49 +09:00 committed by isaacs
parent 31cffae2ba
commit 0db521d0b0

View File

@ -70,7 +70,7 @@ exports.writer = util.inspect;
exports._builtinLibs = ['assert', 'buffer', 'child_process', 'cluster',
'crypto', 'dgram', 'dns', 'domain', 'events', 'fs', 'http', 'https', 'net',
'os', 'path', 'punycode', 'querystring', 'readline', 'repl', 'stream',
'os', 'path', 'punycode', 'querystring', 'readline', 'stream',
'string_decoder', 'tls', 'tty', 'url', 'util', 'vm', 'zlib'];