Files
reacord/packages/reacord/helpers/last.ts
MapleLeaf 88e9919c8f workspace
2021-12-29 13:19:46 -06:00

4 lines
88 B
TypeScript

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