Add installation

This commit is contained in:
Adam Thomann 2017-10-22 21:42:27 -04:00
parent 9cebe88a9c
commit aeedabfa4f

View File

@ -1,6 +1,13 @@
# @babel/helper-hoist-variables # @babel/helper-hoist-variables
## Installation
```sh
npm install @babel/helper-hoist-variables --save
```
## API ## API
```javascript ```javascript
declare export default hoistVariables(path: NodePath, emit: Function, kind: "var" | "let" = "var"); declare export default hoistVariables(path: NodePath, emit: Function, kind: "var" | "let" = "var");
``` ```