UNPKG

955 BJavaScriptView Raw
1import { formatDistance } from "./id/_lib/formatDistance.js";
2import { formatLong } from "./id/_lib/formatLong.js";
3import { formatRelative } from "./id/_lib/formatRelative.js";
4import { localize } from "./id/_lib/localize.js";
5import { match } from "./id/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Indonesian locale.
10 * @language Indonesian
11 * @iso-639-2 ind
12 * @author Rahmat Budiharso [@rbudiharso](https://github.com/rbudiharso)
13 * @author Benget Nata [@bentinata](https://github.com/bentinata)
14 * @author Budi Irawan [@deerawan](https://github.com/deerawan)
15 * @author Try Ajitiono [@imballinst](https://github.com/imballinst)
16 */
17export const id = {
18 code: "id",
19 formatDistance: formatDistance,
20 formatLong: formatLong,
21 formatRelative: formatRelative,
22 localize: localize,
23 match: match,
24 options: {
25 weekStartsOn: 1 /* Monday */,
26 firstWeekContainsDate: 1,
27 },
28};
29
30// Fallback for modularized imports:
31export default id;