is-non-empty-array

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

Usage no npm install needed!

<script type="module">
  import isNonEmptyArray from 'https://cdn.skypack.dev/is-non-empty-array';
</script>

README

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