9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
export type NonEmptyArray<T> = [T, ...T[]];
|
|
|
|
export function renderDate(date: Date): string {
|
|
return date.toLocaleDateString(undefined, {
|
|
year: "numeric",
|
|
month: "2-digit",
|
|
day: "2-digit",
|
|
});
|
|
}
|