包详细信息

babel-plugin-transform-function-bind

babel1.2mMIT6.22.0

Compile function bind operator to ES5

babel-plugin

自述文件

babel-plugin-transform-function-bind

Compile function bind operator to ES5

Installation

$ npm install babel-plugin-transform-function-bind

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-function-bind"]
}

Via CLI

$ babel --plugins transform-function-bind script.js

Via Node API

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