UNPKG

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