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

babel-plugin-transform-remove-debugger

This plugin removes all debugger; statements.

Example

In

debugger;

Out

Installation

npm install babel-plugin-transform-remove-debugger

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