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

12 lines
206 B
JavaScript

export default function () {
return {
visitor: {
CallExpression(path) {
if (path.get("callee").matchesPattern("console", true)) {
path.remove();
}
}
}
};
}