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

4 lines
112 B
TypeScript
Raw Normal View History

2025-05-06 06:45:49 +00:00
export default function isLastChild(arr: Array<unknown>, index: number) {
return arr.length === index + 1
}