Skip to content

Latest commit

 

History

History
 
 

babel-plugin-syntax-function-bind

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

babel-plugin-syntax-function-bind

Allow parsing of function bind.

Installation

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

Usage

Via .babelrc (Recommended)

.babelrc

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

Via CLI

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

Via Node API

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