Opal-Estate-Pro/node_modules/babel-plugin-syntax-function-bind
2019-09-13 11:27:52 +07:00
..
lib style Dashboard 2019-09-13 11:27:52 +07:00
.npmignore style Dashboard 2019-09-13 11:27:52 +07:00
package.json style Dashboard 2019-09-13 11:27:52 +07:00
README.md style Dashboard 2019-09-13 11:27:52 +07:00

babel-plugin-syntax-function-bind

Allow parsing of function bind.

Installation

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

Usage

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