
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
babel-plugin-transform-mangle-names
Advanced tools
An ES2015-aware Babel plugin to generate shorter names for variables and function arguments.
$ npm install babel-plugin-transform-mangle-names
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-mangle-names"]
}
$ babel --plugins transform-mangle-names script.js
In
const SEPARATOR = ' ';
function joinNames(first, second) {
return `${first}${SEPARATOR}${second}`;
}
const reverseName = (name) => name.split('').reverse().join('');
class Person {
constructor(firstName, lastName, age) {
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
}
get fullName() {
return joinNames(this.firstName, this.lastName);
}
reverseName() {
return reverseName(this.fullName);
}
toString() {
return `${this.fullName} (${this.age} years old)`;
}
}
const person = new Person("Gnome", "Chompski", 85); // https://youtu.be/8mjky2QE9DA
Out
const a = ' ';
function joinNames(c, d) {
return `${ c }${ a }${ d }`;
}
const reverseName = c => c.split('').reverse().join('');
class Person {
constructor(c, d, e) {
this.firstName = c;
this.lastName = d;
this.age = e;
}
get fullName() {
return joinNames(this.firstName, this.lastName);
}
reverseName() {
return reverseName(this.fullName);
}
toString() {
return `${ this.fullName } (${ this.age } years old)`;
}
}
const b = new Person("Gnome", "Chompski", 85); //https://youtu.be/8mjky2QE9DA
FAQs
A JavaScript name mangler plugin for Babel
The npm package babel-plugin-transform-mangle-names receives a total of 18 weekly downloads. As such, babel-plugin-transform-mangle-names popularity was classified as not popular.
We found that babel-plugin-transform-mangle-names demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.