is-non-empty-array

0.0.1 • Public • Published

is-non-empty-array

Returns true if a passed value is an Array with at least one element.

Install with yarn add is-non-empty-array.

Usage

import isNonEmptyArray from 'is-non-empty-array';
 
isNonEmptyArray([1]); // => true
isNonEmptyArray([{}]); // => true
isNonEmptyArray(['hello', 'there', 'folks']); // => true
isNonEmptyArray([undefined]); // => true
 
isNonEmptyArray(1); // => false
isNonEmptyArray(null); // => false
isNonEmptyArray(undefined); // => false
isNonEmptyArray('hello, world!'); // => false
isNonEmptyArray([]); // => false

Package Sidebar

Install

npm i is-non-empty-array

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

62.5 kB

Total Files

8

Last publish

Collaborators

  • filipdanic