mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
3 lines
79 B
TypeScript
3 lines
79 B
TypeScript
export default function last<T>(arr: T[]): T {
|
|
return arr[arr.length - 1];
|
|
}
|