rocambole-strip-alert

v1.0.0
Strip alert statements from a rocambole AST
rocambole esprima ast strip remove delete clean debug alert and 7 more...

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

npm i rocambole-strip-alert

Metadata

  • MIT
  • >=0.10.0
  • Patrick Williams
  • released 2/28/2015

Downloads

Maintainers