mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 20:03:09 +02:00
13 lines
379 B
TypeScript
13 lines
379 B
TypeScript
|
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);
|