mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-21 13:10:53 +08:00
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
export const formatDate = (date: Date): string => {
|
|
const options = {
|
|
year: "numeric",
|
|
month: "numeric",
|
|
day: "numeric",
|
|
hour: "numeric",
|
|
minute: "numeric",
|
|
second: "numeric",
|
|
}
|
|
return new Intl.DateTimeFormat("ja-JP", options).format(date)
|
|
}
|