Files
eewing ec317eb17c
CI / build (push) Has been skipped
CI / deploy (push) Successful in 1m11s
INIT
2026-02-18 15:17:47 -06:00

15 lines
297 B
JavaScript

/**
* Get nth item of Array. Negative for backward
*/
export function at(array, index) {
const len = array.length;
if (!len)
return undefined;
if (index < 0)
index += len;
return array[index];
}
export function last(array) {
return array[array.length - 1];
}