Skip to content

Commit 087c921

Browse files
committed
Merge pull request #5 from fubupc/fix-replace-undefined
Fix: fix the 'undefined' string in the css file issue.
2 parents 764f523 + 8b9879e commit 087c921

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@ module.exports = function(input, inputMap) {
9090
});
9191
return;
9292
}
93-
callback(null, input.replace(match[0], match[2]), map);
93+
callback(null, input.replace(match[0], ''), map);
9494
}
9595
}

0 commit comments

Comments
 (0)