Files
calendar/apps/api/lib/utils/stringifyISODate.ts
T
2023-05-25 11:29:10 -07:00

5 lines
206 B
TypeScript

export const stringifyISODate = (date: Date | undefined): string => {
return `${date?.toISOString()}`;
};
// TODO: create a function that takes an object and returns a stringified version of dates of it.