npm.io
6.22.0 • Published 9 years ago

babel-plugin-transform-es3-property-literals

Licence
MIT
Version
6.22.0
Deps
1
Vulns
0
Weekly
0
Stars
44.0K

babel-plugin-transform-es3-property-literals

Ensure that reserved words are quoted in object property keys

Example

In

var foo = {
  catch: function () {}
};

Out

var foo = {
  "catch": function () {}
};

Installation

npm install --save-dev babel-plugin-transform-es3-property-literals

Usage

.babelrc

{
  "plugins": ["transform-es3-property-literals"]
}
Via CLI
babel --plugins transform-es3-property-literals script.js
Via Node API
require("babel-core").transform("code", {
  plugins: ["transform-es3-property-literals"]
});

Keywords