npm.io
6.9.4 • Published 8 years ago

babel-plugin-transform-remove-debugger

Licence
MIT
Version
6.9.4
Deps
0
Size
1 kB
Vulns
0
Weekly
0
Stars
4.4K

babel-plugin-transform-remove-debugger

This plugin removes all debugger; statements.

Example

In

debugger;

Out

Installation

npm install babel-plugin-transform-remove-debugger --save-dev

Usage

.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"]
});

Keywords