From 638ee42125be8305edd2644dc2c33d208eaf350f Mon Sep 17 00:00:00 2001 From: Chris Yip Date: Wed, 22 Apr 2015 22:43:44 +0800 Subject: [PATCH] Add missing semicolon --- lib/module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/module.js b/lib/module.js index 637072fbc763cb..eba3de81713fe8 100644 --- a/lib/module.js +++ b/lib/module.js @@ -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); }