Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
babel-plugin-transform-es2015-literals
Advanced tools
Compile ES2015 unicode string and number literals to ES5
Compile ES2015 unicode string and number literals to ES5
In
var b = 0b11; // binary integer literal
var o = 0o7; // octal integer literal
const u = 'Hello\u{000A}\u{0009}!'; // unicode string literals, newline and tab
Out
var b = 3; // binary integer literal
var o = 7; // octal integer literal
const u = 'Hello\n\t!'; // unicode string literals, newline and tab
npm install --save-dev babel-plugin-transform-es2015-literals
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-es2015-literals"]
}
babel --plugins transform-es2015-literals script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-literals"]
});
FAQs
Compile ES2015 unicode string and number literals to ES5
The npm package babel-plugin-transform-es2015-literals receives a total of 1,081,237 weekly downloads. As such, babel-plugin-transform-es2015-literals popularity was classified as popular.
We found that babel-plugin-transform-es2015-literals demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.