Sha256: b16cc155597cd9865764851c1f079e073625937749847d8b517a354d3aafc20a
Contents?: true
Size: 535 Bytes
Versions: 6
Compression:
Stored size: 535 Bytes
Contents
# babel-plugin-transform-es3-property-literals Ensure that reserved words are quoted in object property keys ## Installation ```sh $ npm install babel-plugin-transform-es3-property-literals ``` ## Usage ### Via `.babelrc` (Recommended) **.babelrc** ```json { "plugins": ["transform-es3-property-literals"] } ``` ### Via CLI ```sh $ babel --plugins transform-es3-property-literals script.js ``` ### Via Node API ```javascript require("babel-core").transform("code", { plugins: ["transform-es3-property-literals"] }); ```
Version data entries
6 entries across 6 versions & 1 rubygems