babel-plugin-transform-remove-debugger
This plugin removes all debugger; statements.
Example
In
debugger;Out
Installation
npm install babel-plugin-transform-remove-debugger --save-devUsage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["transform-remove-debugger"]
}Via CLI
babel --plugins transform-remove-debugger script.jsVia Node API
require("@babel/core").transform("code", {
plugins: ["transform-remove-debugger"]
});