decla-red/shared/src/helper/last.ts
2020-10-05 19:07:17 +02:00

3 lines
99 B
TypeScript

export function last<T>(a: Array<T>): T | null {
return a.length > 0 ? a[a.length - 1] : null;
}