UNPKG

810 BJavaScriptView Raw
1import { formatDistance } from "./be/_lib/formatDistance.js";
2import { formatLong } from "./be/_lib/formatLong.js";
3import { formatRelative } from "./be/_lib/formatRelative.js";
4import { localize } from "./be/_lib/localize.js";
5import { match } from "./be/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Belarusian locale.
10 * @language Belarusian
11 * @iso-639-2 bel
12 * @author Kiryl Anokhin [@alyrik](https://github.com/alyrik)
13 * @author Martin Wind [@arvigeus](https://github.com/mawi12345)
14 */
15export 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 /* Monday */,
24 firstWeekContainsDate: 1,
25 },
26};
27
28// Fallback for modularized imports:
29export default be;