From 87afa50477d22c8d86ed090b2f7c73e1a2969a04 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 17 Apr 2014 18:35:54 -0700 Subject: [PATCH] :lipstick: Add space after comma --- src/coffee-cache.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coffee-cache.coffee b/src/coffee-cache.coffee index 1abc8cc07..1cb979286 100644 --- a/src/coffee-cache.coffee +++ b/src/coffee-cache.coffee @@ -19,7 +19,7 @@ getCachedJavaScript = (cachePath) -> fs.readFileSync(cachePath, 'utf8') compileCoffeeScript = (coffee, filePath, cachePath) -> - {js,v3SourceMap} = CoffeeScript.compile(coffee, filename: filePath, sourceMap: true) + {js, v3SourceMap} = CoffeeScript.compile(coffee, filename: filePath, sourceMap: true) # Include source map in the web page environment. if btoa? and JSON? and unescape? and encodeURIComponent? js = "#{js}\n//# sourceMappingURL=data:application/json;base64,#{btoa unescape encodeURIComponent v3SourceMap}\n//# sourceURL=#{filePath}"