1.0.2 • Published 5 years ago

error-if-not-populated-array v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

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;