Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

babel-plugin-jscript

babel-plugins895kMITdeprecated1.0.4

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

Babel plugin to fix buggy JScript named function expressions

babel-plugin

readme

babel-plugin-jscript

Babel plugin to fix buggy JScript named function expressions

Installation

$ npm install babel-plugin-jscript

Usage

.babelrc

{
  "plugins": ["jscript"]
}

Via CLI

$ babel --plugins jscript script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["jscript"]
});