UNPKG

@prelude/array

Version:

Array module.

7 lines (6 loc) 163 B
/** * @returns value at `index`. * @throws {TypeError} if index is out of bounds. */ declare const at: <T>(values: T[], index: number) => T; export default at;