une
v1.0.0
Published
JavaScript Package for checking is variable empty,undefined or null
Downloads
7
Maintainers
Readme
une
JavaScript Package for checking is variable empty,undefined or null
Features
Install
npm install --save une
Usage
const une = require('une.js');
une();
//=> true
une(null);
//=> true
une(undefined);
//=> true
une([]);
//=> true
une([1]);
//=> false
une({});
//=> true
une({a:1});
//=> false
une('');
//=> true
Author
Prosen Ghosh [email protected] (https://bd.linkedin.com/in/prosen-ghosh-baba9aa8)
License
- MIT