export function toIsoString(input: Date | string | null | undefined): string | null { if (input === null || input === undefined) return null; if (input instanceof Date) return input.toISOString(); return input; }