Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-member-expression-literals

Package Overview
Dependencies
81
Maintainers
6
Versions
64
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @babel/plugin-transform-member-expression-literals

Ensure that reserved words are quoted in property accesses


Version published
Maintainers
6
Created

Package description

What is @babel/plugin-transform-member-expression-literals?

The @babel/plugin-transform-member-expression-literals package is a Babel plugin that transforms member expressions with literal properties into a form that can be more efficiently minimized. This means that it will convert object properties accessed with a literal (e.g., obj['property']) into dot notation (e.g., obj.property), which can be shorter and more optimized in the context of JavaScript code minification.

What are @babel/plugin-transform-member-expression-literals's main functionalities?

Transform member expressions with literal properties to dot notation

This feature automatically converts member expressions that use literal strings for accessing properties into dot notation. This is particularly useful for code minification and optimization.

obj['property'] // Before transformation
obj.property // After transformation

Other packages similar to @babel/plugin-transform-member-expression-literals

Readme

Source

@babel/plugin-transform-member-expression-literals

Ensure that reserved words are quoted in property accesses

Example

In

foo.catch;

Out

foo["catch"];

Installation

npm install --save-dev @babel/plugin-transform-member-expression-literals

Usage

.babelrc

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

Via CLI

babel --plugins @babel/plugin-transform-member-expression-literals script.js

Via Node API

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

Keywords

FAQs

Last updated on 02 Apr 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