🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

@babel/plugin-transform-object-super

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
b

@babel/plugin-transform-object-super

Compile ES2015 object super to ES5

7.27.1
latest
100

Supply Chain Security

100

Vulnerability

69

Quality

92

Maintenance

100

License

Version published
Weekly downloads
28M
4.76%
Maintainers
4
Weekly downloads
 
Created
Issues
767

What is @babel/plugin-transform-object-super?

The @babel/plugin-transform-object-super package is a plugin for Babel, a JavaScript compiler, that allows the transformation of super calls in object methods. This is particularly useful when using the object method shorthand syntax in ES2015 (ES6) and beyond, where you might want to call a method of the same name from the superclass. This plugin ensures that such super calls are correctly transformed to function in environments that do not support this feature natively.

What are @babel/plugin-transform-object-super's main functionalities?

Transforming super calls in object methods

This feature allows you to use 'super' in object methods to call a method of the same name from the superclass. The plugin will transform this code to be compatible with environments that do not support this syntax natively.

{"object": {"method": function() { super.method(); }}}

Other packages similar to @babel/plugin-transform-object-super

Keywords

FAQs

Package last updated on 30 Apr 2025

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