
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
babel-plugin-transform-isnil
Advanced tools
replace the comparing of null or undefined with isNil
I like Existential Operator in CoffeeScript
.
CoffeeScript can be written as follows:
hoge?
Become to JavaScript
hoge == null
Same meaning
hoge === null || hoge === undefined
I want to do the same thing in JavaScript
.
$ 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');
}
In
if (hoge.poge().isNil) {
console.log('returned value of hoge.poge() function is null or undefined');
}
Out
if (hoge.poge() === null || hoge.poge() === undefined) {
console.log('returned value of hoge.poge() function is null or undefined');
}
In
if (hoge.poge(hoge).isNil) {
console.log('returned value of hoge.poge() function is null or undefined');
}
Out
if (hoge.poge(hoge) === null || hoge.poge(hoge) === undefined) {
console.log('returned value of hoge.poge() function 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 3 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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.