Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
babel-plugin-transform-es2015-block-scoping
Advanced tools
Compile ES2015 block scoping (const and let) to ES5
The babel-plugin-transform-es2015-block-scoping package is a Babel plugin that transforms ES2015 block scoping (let and const) to ES5. This is useful for ensuring compatibility with older JavaScript environments that do not support ES2015 features.
Transform let to var
This feature transforms ES2015 let declarations to ES5 var declarations, ensuring compatibility with older JavaScript environments.
const babel = require('@babel/core');
const code = 'let x = 1;';
const output = babel.transform(code, { plugins: ['babel-plugin-transform-es2015-block-scoping'] });
console.log(output.code); // var x = 1;
Transform const to var
This feature transforms ES2015 const declarations to ES5 var declarations, ensuring compatibility with older JavaScript environments.
const babel = require('@babel/core');
const code = 'const y = 2;';
const output = babel.transform(code, { plugins: ['babel-plugin-transform-es2015-block-scoping'] });
console.log(output.code); // var y = 2;
Block scoping with loops
This feature ensures that block-scoped variables within loops are transformed to function-scoped variables, maintaining the correct scoping behavior in older JavaScript environments.
const babel = require('@babel/core');
const code = 'for (let i = 0; i < 5; i++) { console.log(i); }';
const output = babel.transform(code, { plugins: ['babel-plugin-transform-es2015-block-scoping'] });
console.log(output.code); // for (var i = 0; i < 5; i++) { console.log(i); }
The babel-plugin-transform-es2015-parameters package transforms ES2015 parameter features (such as default parameters and rest parameters) to ES5. While it does not directly handle block scoping, it is often used in conjunction with block scoping transformations to ensure full ES2015 compatibility.
The babel-plugin-transform-es2015-destructuring package transforms ES2015 destructuring assignments to ES5. This plugin is complementary to block scoping transformations, as destructuring is often used in conjunction with let and const declarations.
Compile ES2015 block scoping (const and let) to ES5
npm install --save-dev babel-plugin-transform-es2015-block-scoping
.babelrc
(Recommended).babelrc
Without options:
{
"plugins": ["transform-es2015-block-scoping"]
}
With options:
{
"plugins": [
["transform-es2015-block-scoping", {
"throwIfClosureRequired": true
}]
]
}
babel --plugins transform-es2015-block-scoping script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-block-scoping"]
});
throwIfClosureRequired
In cases such as the following it's impossible to rewrite let/const without adding an additional function and closure while transforming:
for (let i = 0; i < 5; i++) {
setTimeout(() => console.log(i), 1);
}
In extremely performance-sensitive code, this can be undesirable. If "throwIfClosureRequired": true
is set, Babel throws when transforming these patterns instead of automatically adding an additional function.
FAQs
Compile ES2015 block scoping (const and let) to ES5
The npm package babel-plugin-transform-es2015-block-scoping receives a total of 1,010,963 weekly downloads. As such, babel-plugin-transform-es2015-block-scoping popularity was classified as popular.
We found that babel-plugin-transform-es2015-block-scoping demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.