Henry Zhu e86f62b304 README: add --save-dev [skip ci]
Closes gh-4910
2016-11-29 08:40:27 -05:00

36 lines
477 B
Markdown

# babel-plugin-syntax-function-sent
Allow parsing of the `function.sent` meta property.
## Installation
```sh
npm install --save-dev babel-plugin-syntax-function-sent
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["syntax-function-sent"]
}
```
### Via CLI
```sh
babel --plugins syntax-function-sent script.js
```
### Via Node API
```javascript
require("babel-core").transform("code", {
plugins: ["syntax-function-sent"]
});
```