babel-plugin-transform-remove-debugger
Example
In
debugger;
Out
Installation
npm install babel-plugin-transform-remove-debugger
Usage
.babelrc
(Recommended)
Via .babelrc
{
"plugins": ["transform-remove-debugger"]
}
Via CLI
babel --plugins transform-remove-debugger script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["transform-remove-debugger"]
});