rocambole-strip-alert
v1.0.0
Published
Strip alert statements from a rocambole AST
Downloads
44,848
Maintainers
Readme
rocambole-strip-alert
Strip alert statements from a rocambole AST
Install
npm install --save rocambole-strip-alert
Example
var rocambole = require('rocambole');
var stripAlert = require('rocambole-strip-alert');
rocambole.moonwalk('if (true) { alert("foo"); }', function (node) {
stripAlert(node);
}).toString();
//=> if (true) { void 0; }
To prevent any side-effects, alert
is replaced with void 0
instead of being removed.
License
MIT © Patrick Williams