index.js 941 B

1234567891011121314151617181920212223242526272829303132
  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 Alex Hoeing [@dcbn]{@link https://github.com/dcbn}
  16. */
  17. var locale = {
  18. code: 'nl-BE',
  19. formatDistance: formatDistance,
  20. formatLong: formatLong,
  21. formatRelative: formatRelative,
  22. localize: localize,
  23. match: match,
  24. options: {
  25. weekStartsOn: 1
  26. /* Monday */
  27. ,
  28. firstWeekContainsDate: 4
  29. }
  30. };
  31. export default locale;