error-if-not-populated-array
v1.0.2
Published
Function triggers error if argument is not an array with at least one item
Downloads
15
Readme
errorIfNotPopulatedArray(arg): void
Function triggers error if arg
is not an array with at least one item.
Examples
errorIfNotPopulatedArray([]);
// Error: "Input must be an array that is not empty"
errorIfNotPopulatedArray(8);
// Error: "Input must be array."
Installation
npm i error-if-not-populated-array
Loading
// if using TypeScript:
import { errorIfNotPopulatedArray } from 'error-if-not-populated-array';
// if using ES5 JavaScript:
var errorIfNotPopulatedArray =
require('error-if-not-populated-array').errorIfNotPopulatedArray;