From 9c042f3cc242145cf6b8bbbdf7fc315cf861f7fb Mon Sep 17 00:00:00 2001 From: Joe Bruno Date: Wed, 2 Dec 2015 12:13:53 -0500 Subject: [PATCH] Remove the commented code and l95 --- index.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/index.js b/index.js index bd254ce..ff69010 100644 --- a/index.js +++ b/index.js @@ -89,13 +89,9 @@ var gulpSass = function gulpSass(options, sync) { } } } - // Replace the stdin with the original file name - // sassMap.sources[sassMap.sources.indexOf(sassMapFile)] = sassFileSrc; - - // Commented out line 93 and added lines 95 - 103 // Remove 'stdin' from souces and replace with filenames! var srcs = sassMap.sources.filter(function(src) { - if (src.indexOf("stdin") === -1) { + if (src.indexOf('stdin') === -1) { return src; } });