1 | import { formatDistance } from "./be/_lib/formatDistance.js";
|
2 | import { formatLong } from "./be/_lib/formatLong.js";
|
3 | import { formatRelative } from "./be/_lib/formatRelative.js";
|
4 | import { localize } from "./be/_lib/localize.js";
|
5 | import { match } from "./be/_lib/match.js";
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | export const be = {
|
16 | code: "be",
|
17 | formatDistance: formatDistance,
|
18 | formatLong: formatLong,
|
19 | formatRelative: formatRelative,
|
20 | localize: localize,
|
21 | match: match,
|
22 | options: {
|
23 | weekStartsOn: 1 ,
|
24 | firstWeekContainsDate: 1,
|
25 | },
|
26 | };
|
27 |
|
28 |
|
29 | export default be;
|