Skip to content

Instantly share code, notes, and snippets.

@YashdalfTheGray
Created September 21, 2017 01:27
Show Gist options
  • Save YashdalfTheGray/a1a9b28003f6cadcc80cc5a89f68bab3 to your computer and use it in GitHub Desktop.
Save YashdalfTheGray/a1a9b28003f6cadcc80cc5a89f68bab3 to your computer and use it in GitHub Desktop.
Console log remover loader
module.exports = function(source, map) {
this.callback(
null,
source.replace(/console\.log\(.*\);?\n/g, ''),
map
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment