Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
@babel/plugin-transform-classes
Advanced tools
The @babel/plugin-transform-classes package is a plugin for Babel that transforms ES2015+ class syntax into equivalent ES5 code. This is useful for ensuring compatibility with environments that do not support the latest JavaScript features.
Class transformation
Transforms ES2015+ class syntax into equivalent ES5 constructor functions with prototype methods.
{"class MyClass { constructor(name) { this.name = name; } greet() { return 'Hello, ' + this.name; } } }
Super calls
Handles 'super' calls and transforms them into appropriate ES5 code that calls the parent class constructor or methods.
{"class ChildClass extends ParentClass { constructor(name) { super(name); } } }
Static methods
Transforms static methods in classes to static methods on the constructor function in ES5.
{"class MyClass { static myStaticMethod() { return 'I am static'; } } }
Instance properties
Transforms class instance properties into assignments within the constructor function.
{"class MyClass { myProperty = 'default value'; } }
Transforms ES2015+ arrow functions into equivalent ES5 function expressions. Similar in that it provides transformation of modern JavaScript features to ES5, but focuses on arrow functions instead of classes.
Transforms ES2015+ destructuring assignments and parameters into equivalent ES5 code. Similar in that it provides transformation of modern JavaScript syntax to ES5, but focuses on destructuring rather than class syntax.
Transforms ES2015+ spread syntax for arrays and function calls into equivalent ES5 code. Similar in that it provides transformation of modern JavaScript features to ES5, but focuses on spread syntax instead of class syntax.
Compile ES2015 classes to ES5
See our website @babel/plugin-transform-classes for more information.
Using npm:
npm install --save-dev @babel/plugin-transform-classes
or using yarn:
yarn add @babel/plugin-transform-classes --dev
FAQs
Compile ES2015 classes to ES5
The npm package @babel/plugin-transform-classes receives a total of 20,940,866 weekly downloads. As such, @babel/plugin-transform-classes popularity was classified as popular.
We found that @babel/plugin-transform-classes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.