checkempty
v1.0.4
Published
This package check a value and return true if it is null or empty
Readme
Usage:
const checkEmpty = require('checkempty');
console.log(checkEmpty(null)); // return true
console.log(checkEmpty("")); // return true
console.log(checkEmpty("number or string or anything else")); // return false