6.13.0 • Published 7 years ago

babel-plugin-syntax-function-sent v6.13.0

Weekly downloads
374
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-syntax-function-sent

Allow parsing of the function.sent meta property.

Installation

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

Usage

Via .babelrc (Recommended)

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