Files
reacord/packages/helpers/last.ts
2023-08-16 19:32:28 -05:00

4 lines
87 B
TypeScript

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