Skip to content

Latest commit

 

History

History
 
 

babel-plugin-transform-function-bind

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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"]
});