error-if-array-too-short-to-meet-adjacent-items-request
v2.0.0
Published
Function triggers error if array is too short to return a requested number of adjacent items beginning at a particular index
Downloads
13
Maintainers
Readme
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';