New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

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

Package Overview
Dependencies
Maintainers
4
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

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

7.25.9
latest
Source
npm
Version published
Weekly downloads
25M
0.34%
Maintainers
4
Weekly downloads
 
Created

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

Keywords

babel-plugin

FAQs

Package last updated on 22 Oct 2024

Did you know?

Socket

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