npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

babel-plugin-transform-es3-property-literals

6.22.0

@hzoo

npmRepoSnykSocket
Downloads:177577
$ npm install babel-plugin-transform-es3-property-literals
DailyWeeklyMonthlyYearly

babel-plugin-transform-es3-property-literals

Ensure that reserved words are quoted in object property keys

Installation

$ npm install babel-plugin-transform-es3-property-literals

Usage

Via .babelrc (Recommended)

.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"]
});