Babel
  • Docs
  • Setup
  • Try it out
  • Videos
  • Blog
  • Donate
  • Team
  • GitHub
Edit

@babel/plugin-transform-property-literals

Example

In

var foo = {
  // changed
  const: function () {},
  var: function () {},

  // not changed
  "default": 1,
  [a]: 2,
  foo: 1
};

Out

var foo = {
  "const": function () {},
  "var": function () {},

  "default": 1,
  [a]: 2,
  foo: 1
};

Installation

npm install @babel/plugin-transform-property-literals --save-dev

Usage

With a configuration file (Recommended)

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

Via CLI

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

Via Node API

require("@babel/core").transform("code", {
  plugins: ["@babel/plugin-transform-property-literals"]
});
  • Example
  • Installation
  • Usage
    • With a configuration file (Recommended)
    • Via CLI
    • Via Node API
Babel
Docs
Learn ES2015
Community
VideosUser ShowcaseStack OverflowSlack ChannelTwitter
More
BlogGitHub OrgGitHub RepoWebsite RepoOld 6.x SiteOld 5.x Site