2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-29 01:58:35 +00:00

22 lines
326 B
Markdown
Raw Normal View History

2017-07-31 15:51:51 +05:30
# babel-helpers
> Collection of helper functions used by Babel transforms.
## Install
```sh
npm install --save-dev babel-helpers
```
## Usage
```js
import * as helpers from 'babel-helpers';
import * as t from 'babel-types';
const typeofHelper = helpers.get('typeof');
t.isExpressionStatement(typeofHelper);
// true
```