2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-27 00:58:31 +00:00
frappe_docker/frappe-bench/node_modules/babel-plugin-transform-remove-debugger
2017-07-31 15:51:51 +05:30
..
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30

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