hippofish/packages/client/src/scripts/intl-const.ts

13 lines
361 B
TypeScript
Raw Normal View History

import { lang } from "@/config";
export const versatileLang = (lang ?? "ja-JP").replace("ja-KS", "ja-JP");
export const dateTimeFormat = new Intl.DateTimeFormat(versatileLang, {
year: "numeric",
month: "numeric",
day: "numeric",
hour: "numeric",
minute: "numeric",
second: "numeric",
});
export const numberFormat = new Intl.NumberFormat(versatileLang);