mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 23:05:09 +00:00
12 lines
No EOL
187 B
JavaScript
12 lines
No EOL
187 B
JavaScript
"use strict";
|
|
|
|
module.exports = function () {
|
|
return {
|
|
name: "transform-remove-debugger",
|
|
visitor: {
|
|
DebuggerStatement(path) {
|
|
path.remove();
|
|
}
|
|
}
|
|
};
|
|
}; |