Files
reacord/packages/helpers/last.ts
2022-10-14 13:22:55 -05:00

4 lines
88 B
TypeScript

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