JSPM

is-empty-array

1.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 60
  • Score
    100M100P100Q65011F
  • License MIT

Check if an array is empty.

Package Exports

  • is-empty-array

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-empty-array) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

is-empty-array

NPM version License Build status

Check if an array is empty.

Installation

npm install is-empty-array

Usage

var isEmptyArray = require('is-empty-array')

isEmptyArray([])  // => true
isEmptyArray([1]) // => false
isEmptyArray({})  // => false