babel/packages/babel-plugin-syntax-function-sent
2017-03-02 16:04:47 -05:00
..
2017-03-02 16:04:47 -05:00
2016-11-29 08:40:27 -05:00

babel-plugin-syntax-function-sent

Allow parsing of the function.sent meta property.

Installation

npm install --save-dev babel-plugin-syntax-function-sent

Usage

.babelrc

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

Via CLI

babel --plugins syntax-function-sent script.js

Via Node API

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