erp-platform/ui/src/utils/isLastChild.ts
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

3 lines
112 B
TypeScript

export default function isLastChild(arr: Array<unknown>, index: number) {
return arr.length === index + 1
}