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-isnil
Advanced tools
$ npm install --save babel-plugin-transform-isnil
In
if (foo.isNil) {
console.log('foo is null or undefined');
}
Out
if (foo === null || foo === undefined) {
console.log('foo is null or undefined');
}
In
if (hoge.poge.isNil && foo.bar.isNil) {
console.log('hoge.poge and foo.bar is null or undefined');
}
Out
if ((hoge.poge === null || hoge.poge === undefined) && (foo.bar === null || foo.bar === undefined)) {
console.log('hoge.poge and foo.bar is null or undefined');
}
.babelrc
{
"plugins": ["babel-plugin-transform-isnil"]
}
Requirement global
$ git clone https://github.com/MaxMEllon/babel-plugin-transform-isNil
$ cd babel-plugin-transform-isNil
$ npm install
$ npm test
FAQs
replace the comparing of null or undefined with isNil
The npm package babel-plugin-transform-isnil receives a total of 21 weekly downloads. As such, babel-plugin-transform-isnil popularity was classified as not popular.
We found that babel-plugin-transform-isnil 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.