Socket
Socket
Sign inDemoInstall

babel-plugin-transform-property-literals

Package Overview
Dependencies
1
Maintainers
5
Versions
90
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-transform-property-literals

Turn valid property key literals to plain identifiers


Version published
Weekly downloads
430K
increased by3.45%
Maintainers
5
Install size
56.4 kB
Created
Weekly downloads
 

Readme

Source

babel-plugin-transform-property-literals

This plugin allows Babel to transform valid identifier property key literals into identifiers.

Example

In

var foo = {
  // changed
  "bar": function () {},
  "1": function () {},

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

Out

var foo = {
  bar: function () {},
  1: function () {},

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

Installation

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

Usage

.babelrc

{
  "plugins": ["transform-property-literals"]
}

Via CLI

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

Via Node API

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

Keywords

FAQs

Last updated on 14 May 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc