babel/packages/babel-plugin-transform-es2015-computed-properties
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-03-03 12:12:14 -08:00
2016-05-02 19:43:49 -04:00

babel-plugin-transform-es2015-computed-properties

Compile ES2015 computed properties to ES5

Installation

npm install --save-dev babel-plugin-transform-es2015-computed-properties

Usage

.babelrc

// without options
{
  "plugins": ["transform-es2015-computed-properties"]
}

// with options
{
  "plugins": [
    ["transform-es2015-computed-properties", {
      "loose": true
    }]
  ]
}

Via CLI

babel --plugins transform-es2015-computed-properties script.js

Via Node API

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

Options

  • loose - Just like method assignment in classes, in loose mode, computed property names use simple assignments instead of being defined. This is unlikely to be an issue in production code.