nl.js 1.1 KB

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