Files
Manmics/mangashelf-server/node_modules/@honeo/check/_is/is-nullish.mjs
T
2025-10-10 18:00:07 -04:00

20 lines
238 B
JavaScript

/*
null or undef
args
1: any
result
boolean
*/
function isNullish(arg){
if( arg===null ){
return true;
}else if( arg===undefined ){
return true;
}else{
return false;
}
}
export default isNullish;