babel/packages/babel-plugin-syntax-function-sent
Sebastian McKenzie ae831c2270 v6.3.12
2015-12-04 22:56:13 +11:00
..
2015-12-04 22:56:13 +11:00

babel-plugin-syntax-function-sent

Allow parsing of the function.sent meta property.

Installation

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