1 | import { formatDistance } from "./id/_lib/formatDistance.js";
|
2 | import { formatLong } from "./id/_lib/formatLong.js";
|
3 | import { formatRelative } from "./id/_lib/formatRelative.js";
|
4 | import { localize } from "./id/_lib/localize.js";
|
5 | import { match } from "./id/_lib/match.js";
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | export 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 ,
|
26 | firstWeekContainsDate: 1,
|
27 | },
|
28 | };
|
29 |
|
30 |
|
31 | export default id;
|