mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 20:30:04 +02:00
13 lines
188 B
JavaScript
13 lines
188 B
JavaScript
"use strict";
|
|
|
|
module.exports = function () {
|
|
return {
|
|
name: "transform-remove-debugger",
|
|
visitor: {
|
|
DebuggerStatement(path) {
|
|
path.remove();
|
|
}
|
|
|
|
}
|
|
};
|
|
}; |