babel/packages/babel-plugin-syntax-function-sent
2017-10-16 22:49:56 -04:00
..
2017-06-27 12:15:00 -05:00
2017-03-25 21:46:16 -04: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"]
});