Remove 'utf-8' option because it's the default.

This commit is contained in:
John-David Dalton
2015-12-27 10:18:57 -06:00
parent ce19067cfd
commit 4f1c3887f7

View File

@@ -24,4 +24,4 @@ var reLine = /.*/gm;
fs.writeFileSync(filePath, fs.readFileSync(filePath, 'utf-8').replace(pattern, function(match) {
return match.replace(reLine, '');
}), 'utf-8');
}));