ptitlutins/app/utils/undatedChildren.ts
2026-06-15 23:34:49 +02:00

5 lines
207 B
TypeScript

import type { Node } from "~/types"
/** The undated children of a node (the "Sans date" bucket). */
export const undatedChildren = (children: Node[]): Node[] =>
children.filter((c) => !c.event.startDate)