From bac537b186bf6d8e96fa4802330440446664325b Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Sat, 12 Jan 2013 12:14:39 -0800 Subject: [PATCH] repl: fix lint --- lib/repl.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/repl.js b/lib/repl.js index c349bbcb408..46ac46b1e50 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -329,15 +329,15 @@ REPLServer.prototype.createContext = function() { // make built-in modules available directly // (loaded lazily) - exports._builtinLibs.forEach(function(name){ + exports._builtinLibs.forEach(function(name) { Object.defineProperty(context, name, { - get: function(){ + get: function() { var lib = require(name); context._ = context[name] = lib; return lib; }, // allow the creation of other globals with this name - set: function(val){ + set: function(val) { delete context[name]; context[name] = val; },