Files
reacord/helpers/last.ts
2021-12-26 12:06:06 -06:00

4 lines
88 B
TypeScript

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