2015-09-15 06:12:46 +01:00

10 lines
131 B
JavaScript

export default function () {
return {
visitor: {
DebuggerStatement(path) {
path.remove();
}
}
};
}