You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
239 B
TypeScript

export const isoDateStr = (date: Date) =>
`${date.getUTCFullYear()}-${`${date.getUTCMonth() + 1}`.padStart(
2,
"0",
)}-${`${date.getUTCDate()}`.padStart(2, "0")}`;
export const dbg = <T>(a: T) => {
console.debug(a);
return a;
};