ðŸ“js-is-empty
makes your empty checks for you. We have empty checks for
Array
Object
String
js-is-empty
is available on npm/yarn:
$ npm install @codevor/js-is-empty --save
$ yarn add @codevor/js-is-empty
import { isArrayEmpty, isObjectEmpty } from '@codevor/js-is-empty';
const myEmptyArray = [];
const person = { name: 'John Doe', age: 32 };
isArrayEmpty(myEmptyArray); // => true
isObjectEmpty(person); // => false
const jsIsEmpty = require('@codevor/js-is-empty');
const isArrayEmpty = jsIsEmpty.isArrayEmpty;
const isObjectEmpty = jsIsEmpty.isObjectEmpty;
const myEmptyArray = [];
const person = { name: 'John Doe', age: 32 };
isArrayEmpty(myEmptyArray); // => true
isObjectEmpty(person); // => false
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
This project adheres to Semantic Versioning. Every release, along with the migration instructions, is documented on the Github Releases page.
Report bugs or do suggestions using the issues.