1 2 3 4
/** @private */ export function isValidDate(day: Date): boolean { return !isNaN(day.getTime()); }