Skip to content

Commit bac537b

Browse files
committed
repl: fix lint
1 parent 9bce5e8 commit bac537b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/repl.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,15 +329,15 @@ REPLServer.prototype.createContext = function() {
329329

330330
// make built-in modules available directly
331331
// (loaded lazily)
332-
exports._builtinLibs.forEach(function(name){
332+
exports._builtinLibs.forEach(function(name) {
333333
Object.defineProperty(context, name, {
334-
get: function(){
334+
get: function() {
335335
var lib = require(name);
336336
context._ = context[name] = lib;
337337
return lib;
338338
},
339339
// allow the creation of other globals with this name
340-
set: function(val){
340+
set: function(val) {
341341
delete context[name];
342342
context[name] = val;
343343
},

0 commit comments

Comments
 (0)