Sebastian McKenzie 399d835285 fix linting errors
2015-02-06 23:06:54 +11:00

10 lines
199 B
JavaScript

var t = require("../../../types");
exports.optional = true;
exports.ExpressionStatement = function (node) {
if (t.isIdentifier(node.expression, { name: "debugger" })) {
this.remove();
}
};