Files
reacord/packages/helpers/last.ts
2022-07-27 22:42:35 -05:00

4 lines
88 B
TypeScript

export function last<T>(array: T[]): T | undefined {
return array[array.length - 1]
}