4 lines
86 B
TypeScript
4 lines
86 B
TypeScript
export function niceDate(d: Date): string {
|
|
return d.toISOString().split("T")[0];
|
|
}
|