Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisyip committed Apr 22, 2015
1 parent 077f7ee commit 638ee42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ Module._initPaths = function() {
var nodePath = process.env['NODE_PATH'];
if (nodePath) {
paths = nodePath.split(path.delimiter).filter(function(path) {
return !!path
return !!path;
}).concat(paths);
}

Expand Down

0 comments on commit 638ee42

Please sign in to comment.