mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
414 B
414 B
babel-plugin-jscript
Babel plugin to fix buggy JScript named function expressions
Installation
$ npm install babel-plugin-jscript
Usage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["jscript"]
}
Via CLI
$ babel --plugins jscript script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["jscript"]
});