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