babel/packages/babel-plugin-transform-es2015-block-scoping
Amjad Masad 3bebc3a7ca lint
2016-03-07 18:26:51 -08:00
..
2016-03-07 18:26:51 -08:00
2016-03-04 15:50:05 -05:00
2016-03-04 18:16:17 -05:00
2015-09-15 06:12:46 +01:00

babel-plugin-transform-es2015-block-scoping

Compile ES2015 block scoping (const and let) to ES5

Installation

$ npm install babel-plugin-transform-es2015-block-scoping

Usage

.babelrc

{
  "plugins": ["transform-es2015-block-scoping"]
}

Via CLI

$ babel --plugins transform-es2015-block-scoping script.js

Via Node API

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