UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

6 lines 226 B
/** * Convert a string to a date. * @param date The date string to convert * @returns A Date object if the input is a valid date, null otherwise */ export declare function toDate(date: string | number | Date): Date | null;