This commit is contained in:
Agusti Fernandez Pardo
2022-03-30 14:17:55 +02:00
parent 39ae2aed37
commit 1de7bc4146
126 changed files with 1240 additions and 992 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
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.
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.