js-groomer
v1.0.0
Published
Searches JS code for specific comments and allows stripping out those comments or the following chunk of code.
Readme
Usage:
Remove just a comment
const groomer = require('js-groomer');
const cleaned = groomer.handleFile(myFileInput, function(comment) {
if (comment === '// REMOVEME')
return groomer.RemoveOptions.REMOVE_COMMENT;
});Remove a block of code after a comment
const groomer = require('js-groomer');
const cleaned = groomer.handleFile(myFileInput, function(comment) {
if (comment === '// REMOVEME')
return groomer.RemoveOptions.REMOVE_CODE;
});Replace a comment
const groomer = require('js-groomer');
const cleaned = groomer.handleFile(myFileInput, function(comment) {
if (comment === '// REMOVEME') {
return {
action: groomer.RemoveOptions.REMOVE_COMMENT,
data: 'foobar'
};
}
});