babel/packages/babel-plugin-transform-es2015-block-scoped-functions
Brian Ng f71efbce92 Update transform-es2015 READMEs from babel.github.io [skip ci] (#4926)
Signed-off-by: Brian Ng <bng412@gmail.com>
2016-12-01 16:11:36 -05:00
..
2016-03-03 14:49:20 -08:00
2016-05-02 19:43:49 -04:00

babel-plugin-transform-es2015-block-scoped-functions

Babel plugin to ensure function declarations at the block level are block scoped.

Installation

npm install --save-dev babel-plugin-transform-es2015-block-scoped-functions

Usage

.babelrc

{
  "plugins": ["transform-es2015-block-scoped-functions"]
}

Via CLI

babel --plugins transform-es2015-block-scoped-functions script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-es2015-block-scoped-functions"]
});