UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 213 B
/** * Checks if the given input is a Date object, otherwise converts it to one */ declare const convertToDateIfNeeded: (date: string | Date) => string | number | Date; export default convertToDateIfNeeded;