An open API service indexing awesome lists of open source software.

https://github.com/writetome51/error-if-not-populated-array

Function triggers error if argument is not an array with at least one item
https://github.com/writetome51/error-if-not-populated-array

Last synced: 6 months ago
JSON representation

Function triggers error if argument is not an array with at least one item

Awesome Lists containing this project

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
```ts
// if using TypeScript:
import { errorIfNotPopulatedArray } from 'error-if-not-populated-array';
// if using ES5 JavaScript:
var errorIfNotPopulatedArray =
require('error-if-not-populated-array').errorIfNotPopulatedArray;
```