babel/packages/babel-plugin-transform-es2015-shorthand-properties
2016-05-02 19:43:49 -04:00
..
2015-10-29 17:51:24 +00:00
2016-05-02 19:43:49 -04:00
2015-09-15 06:12:46 +01:00

babel-plugin-transform-es2015-shorthand-properties

Compile ES2015 shorthand properties to ES5

Installation

$ npm install babel-plugin-transform-es2015-shorthand-properties

Usage

.babelrc

{
  "plugins": ["transform-es2015-shorthand-properties"]
}

Via CLI

$ babel --plugins transform-es2015-shorthand-properties script.js

Via Node API

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