10 lines
199 B
JavaScript
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();
|
|
}
|
|
};
|