index.js 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. import formatDistance from "./_lib/formatDistance/index.js";
  2. import formatLong from "./_lib/formatLong/index.js";
  3. import formatRelative from "./_lib/formatRelative/index.js";
  4. import localize from "./_lib/localize/index.js";
  5. import match from "./_lib/match/index.js";
  6. /**
  7. * @type {Locale}
  8. * @category Locales
  9. * @summary Dutch locale.
  10. * @language Dutch
  11. * @iso-639-2 nld
  12. * @author Jorik Tangelder [@jtangelder]{@link https://github.com/jtangelder}
  13. * @author Ruben Stolk [@rubenstolk]{@link https://github.com/rubenstolk}
  14. * @author Lode Vanhove [@bitcrumb]{@link https://github.com/bitcrumb}
  15. * @author Edo Rivai [@edorivai]{@link https://github.com/edorivai}
  16. * @author Niels Keurentjes [@curry684]{@link https://github.com/curry684}
  17. * @author Stefan Vermaas [@stefanvermaas]{@link https://github.com/stefanvermaas}
  18. */
  19. var locale = {
  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. export default locale;