StrictisDateOn this pageisDateisDate variable Returns true if input is a Date object. Signature: isDate: <T>(input: T) => input is Extract<T, Date> Example isDate(new Date()); // trueisDate("2024-01-01"); // false Open Source Code