summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts/intl-const.ts
blob: 081ff6248c6d65657db5c86ea112b47db90b139c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);