2.0.0 • Published 4 years ago

error-if-array-too-short-to-meet-adjacent-items-request v2.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

errorIfArrayTooShortToMeetAdjacentItemsRequest(      startingIndex,      numberRequested,      arrayLength): void

Triggers error if arrayLength is too short to have numberRequested adjacent
items beginning at startingIndex.
startingIndex can be negative or positive.

Example

let arr = [1,2,3,4,5,6];
errorIfArrayTooShortToMeetAdjacentItemsRequest(1, 6, arr.length);
// Error: "the array does not have enough items to fulfill your request"

Installation

npm install error-if-array-too-short-to-meet-adjacent-items-request

Loading

import { errorIfArrayTooShortToMeetAdjacentItemsRequest } 
    from 'error-if-array-too-short-to-meet-adjacent-items-request';

License

MIT