mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 15:05:08 +00:00
| .. | ||
| lib | ||
| .npmignore | ||
| package.json | ||
| README.md | ||
babel-plugin-transform-remove-console
This plugin removes all console.* calls.
Example
In
console.log("foo");
console.error("bar");
Out
Installation
npm install babel-plugin-transform-remove-console
Usage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["transform-remove-console"]
}
Via CLI
babel --plugins transform-remove-console script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["transform-remove-console"]
});