1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 12:20:04 +02:00
Files
minifyfromhtml/node_modules/babel-plugin-transform-remove-debugger/README.md
2018-05-05 13:54:07 +02:00

49 lines
565 B
Markdown

# babel-plugin-transform-remove-debugger
This plugin removes all `debugger;` statements.
## Example
**In**
```javascript
debugger;
```
**Out**
```javascript
```
## Installation
```sh
npm install babel-plugin-transform-remove-debugger
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["transform-remove-debugger"]
}
```
### Via CLI
```sh
babel --plugins transform-remove-debugger script.js
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["transform-remove-debugger"]
});
```