UNPKG

@prelude/array

Version:

Array module.

4 lines (3 loc) 165 B
/** Like `at` but bounds less than zero index to 0 and out of bound to last. */ declare const bounded: <T>(values: T[], index: number) => T; export default bounded;