1.0.0 • Published 9 years ago

rocambole-strip-alert v1.0.0

Weekly downloads
9,623
License
MIT
Repository
github
Last release
9 years ago

rocambole-strip-alert Build Status

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