generated from methanium/template
6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
export function formatTime(value: string) {
|
|
return new Intl.DateTimeFormat(undefined, {
|
|
dateStyle: "medium",
|
|
timeStyle: "short",
|
|
}).format(new Date(value));
|
|
}
|