UNPKG

956 BJavaScriptView Raw
1import { formatDistance } from "./nl-BE/_lib/formatDistance.js";
2import { formatLong } from "./nl-BE/_lib/formatLong.js";
3import { formatRelative } from "./nl-BE/_lib/formatRelative.js";
4import { localize } from "./nl-BE/_lib/localize.js";
5import { match } from "./nl-BE/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Dutch locale.
10 * @language Dutch
11 * @iso-639-2 nld
12 * @author Jorik Tangelder [@jtangelder](https://github.com/jtangelder)
13 * @author Ruben Stolk [@rubenstolk](https://github.com/rubenstolk)
14 * @author Lode Vanhove [@bitcrumb](https://github.com/bitcrumb)
15 * @author Alex Hoeing [@dcbn](https://github.com/dcbn)
16 */
17export const nlBE = {
18 code: "nl-BE",
19 formatDistance: formatDistance,
20 formatLong: formatLong,
21 formatRelative: formatRelative,
22 localize: localize,
23 match: match,
24 options: {
25 weekStartsOn: 1 /* Monday */,
26 firstWeekContainsDate: 4,
27 },
28};
29
30// Fallback for modularized imports:
31export default nlBE;