6.1.1 • Published 7 years ago

babel-plugin-transform-es3-helper-modules v6.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-transform-es3-helper-modules

Externalize references to helpers using babel-helper-modules-es3.

If you want to externalize builtins too via core-js's library, see the official plugin babel-plugin-transform-runtime.

Installation

$ npm install babel-plugin-transform-es3-helper-modules babel-helper-modules-es3

Usage

Remember to also install babel-helper-modules-es3. when using the transpiled code.

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-es3-helper-modules"]
}

Via CLI

$ babel --plugins transform-es3-helper-modules script.js

Via Node API

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