From d7cb1550bf92729a7da8b436abb47dece414250e Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 8 Oct 2014 19:01:43 -0700 Subject: [PATCH] Remove semicolon --- src/module-cache.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module-cache.coffee b/src/module-cache.coffee index c39672532..77fc635d0 100644 --- a/src/module-cache.coffee +++ b/src/module-cache.coffee @@ -127,7 +127,7 @@ if cache.debug originalFindPath = Module._findPath Module._findPath = (request, paths) -> - cacheKey = JSON.stringify({request, paths}); + cacheKey = JSON.stringify({request, paths}) cache.findPathCount++ unless Module._pathCache[cacheKey] startTime = Date.now() foundPath = originalFindPath.apply(global, arguments)