From 6d75c06e6425f67ec5d4e44b3c440c02ddf0d1d8 Mon Sep 17 00:00:00 2001 From: Brian White Date: Thu, 16 Dec 2010 19:41:38 -0500 Subject: [PATCH] Add os module to repl's built-in lib list --- lib/repl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/repl.js b/lib/repl.js index d5b55f2027..4d144f17cd 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -256,7 +256,7 @@ REPLServer.prototype.complete = function(line) { // Kind of lame that this needs to be updated manually. // Intentionally excluding moved modules: posix, utils. var builtinLibs = ['assert', 'buffer', 'child_process', 'crypto', 'dgram', - 'dns', 'events', 'file', 'freelist', 'fs', 'http', 'net', 'path', + 'dns', 'events', 'file', 'freelist', 'fs', 'http', 'net', 'os', 'path', 'querystring', 'readline', 'repl', 'string_decoder', 'util', 'tcp', 'url']; completionGroups.push(builtinLibs);