Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

codevor/js-is-empty

Repository files navigation

πŸ“­Empty Checker

License Travis CI Coverage Status Commitizen

πŸ“­js-is-empty makes your empty checks for you. We have empty checks for

  • Array
  • Object
  • String

Installation

js-is-empty is available on npm/yarn:

$ npm install @codevor/js-is-empty --save
$ yarn add @codevor/js-is-empty

Usage

With ES6/import

import { isArrayEmpty, isObjectEmpty } from '@codevor/js-is-empty';
const myEmptyArray = [];
const person = { name: 'John Doe', age: 32 };
isArrayEmpty(myEmptyArray); // => true
isObjectEmpty(person); // => false

With require

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

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Changelog

This project adheres to Semantic Versioning. Every release, along with the migration instructions, is documented on the Github Releases page.

Bugs and Sugestions

Report bugs or do suggestions using the issues.

License

MIT License Β© Codevor

About

πŸ“­ Basic Empty Checker Library

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /