UNPKG

1.09 kBJavaScriptView Raw
1import { formatDistance } from "./nl/_lib/formatDistance.js";
2import { formatLong } from "./nl/_lib/formatLong.js";
3import { formatRelative } from "./nl/_lib/formatRelative.js";
4import { localize } from "./nl/_lib/localize.js";
5import { match } from "./nl/_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 Edo Rivai [@edorivai](https://github.com/edorivai)
16 * @author Niels Keurentjes [@curry684](https://github.com/curry684)
17 * @author Stefan Vermaas [@stefanvermaas](https://github.com/stefanvermaas)
18 */
19export const nl = {
20 code: "nl",
21 formatDistance: formatDistance,
22 formatLong: formatLong,
23 formatRelative: formatRelative,
24 localize: localize,
25 match: match,
26 options: {
27 weekStartsOn: 1 /* Monday */,
28 firstWeekContainsDate: 4,
29 },
30};
31
32// Fallback for modularized imports:
33export default nl;