UNPKG

756 BJavaScriptView Raw
1import { formatDistance } from "./mn/_lib/formatDistance.js";
2import { formatLong } from "./mn/_lib/formatLong.js";
3import { formatRelative } from "./mn/_lib/formatRelative.js";
4import { localize } from "./mn/_lib/localize.js";
5import { match } from "./mn/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Mongolian locale.
10 * @language Mongolian
11 * @iso-639-2 mon
12 * @author Bilguun Ochirbat [@bilguun0203](https://github.com/bilguun0203)
13 */
14export const mn = {
15 code: "mn",
16 formatDistance: formatDistance,
17 formatLong: formatLong,
18 formatRelative: formatRelative,
19 localize: localize,
20 match: match,
21 options: {
22 weekStartsOn: 1 /* Monday */,
23 firstWeekContainsDate: 1,
24 },
25};
26
27// Fallback for modularized imports:
28export default mn;