non-empty
v1.0.1
Published
Check if the value is not empty
Downloads
8
Readme
non-empty
Check if the value is not empty.
Installation
npm install non-empty
Usage
import notEmpty from 'non-empty';
notEmpty(0); // false
notEmpty(''); // false
notEmpty([]); // false
notEmpty({}); // false
notEmpty('0'); // true
notEmpty([1]); // true