babel/packages/babel-plugin-transform-property-literals

@babel/plugin-transform-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-property-literals

Usage

.babelrc

{
  "plugins": ["@babel/transform-property-literals"]
}

Via CLI

babel --plugins @babel/transform-property-literals script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["@babel/transform-property-literals"]
});