Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
babel-plugin-transform-iota
Advanced tools
Transforms iota() calls into ever-increasing literals.
Transforms iota()
calls into ever-increasing literals, à la Go.
$ npm install babel-plugin-transform-iota
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-iota"]
}
$ babel --plugins transform-iota script.js
require("babel-core").transform("code", {
plugins: ["transform-iota"]
});
Input
var foo = iota()
let bar = iota()
bar.baz = iota()
const qux = {
a: iota(),
[iota()]: 'b'
}
Output
var foo = [1]
let bar = [2]
bar.baz = [3]
const qux = {
a: [4],
[[5]]: 'b'
}
([5]
coerces to "5"
, which becomes a valid key. We cannot directly use
"5"
as iota, because we want to support the case where we add properties to
an iota, and we can't do that on string literals.)
Also removes all functions named iota()
, so you can still define them and
have a working implementation without Babel (and so your code lints without
/* global iota */
overrides). Here's a working example:
function iota () {
if (!this.i) { this.i = 0 }
return [this.i += 1]
}
Made by Félix Saparelli. Licensed under ISC. Inspired by Go.
FAQs
Transforms iota() calls into ever-increasing literals.
The npm package babel-plugin-transform-iota receives a total of 0 weekly downloads. As such, babel-plugin-transform-iota popularity was classified as not popular.
We found that babel-plugin-transform-iota 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.