5 lines
207 B
TypeScript
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)
|