1. babel-plugin-transform-es3-property-literals
Ensure that reserved words are quoted in object property keys
babel-plugin-transform-es3-property-literals
Package: babel-plugin-transform-es3-property-literals
Created by: babel
Last modified: Mon, 13 Jun 2022 04:04:28 GMT
Version: 6.22.0
License: MIT
Downloads: 121,762
Repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es3-property-literals

Install

npm install babel-plugin-transform-es3-property-literals
yarn add babel-plugin-transform-es3-property-literals

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

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin