Socket
Socket
Sign inDemoInstall

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

Package Overview
Dependencies
Maintainers
4
Versions
70
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


Version published
Weekly downloads
9.1M
decreased by-59.77%
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

FAQs

Package last updated on 04 Apr 2023

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

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc