sozsoft-platform/ui/src/utils/isLastChild.ts

4 lines
112 B
TypeScript
Raw Normal View History

2026-02-24 20:44:16 +00:00
export default function isLastChild(arr: Array<unknown>, index: number) {
return arr.length === index + 1
}