index.js 858 B

12345678910111213141516171819202122232425262728
  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 Croatian locale.
  10. * @language Croatian
  11. * @iso-639-2 hrv
  12. * @author Matija Marohnić [@silvenon]{@link https://github.com/silvenon}
  13. * @author Manico [@manico]{@link https://github.com/manico}
  14. * @author Ivan Jeržabek [@jerzabek]{@link https://github.com/jerzabek}
  15. */
  16. var locale = {
  17. code: 'hr',
  18. formatDistance: formatDistance,
  19. formatLong: formatLong,
  20. formatRelative: formatRelative,
  21. localize: localize,
  22. match: match,
  23. options: {
  24. weekStartsOn: 1 /* Monday */,
  25. firstWeekContainsDate: 1
  26. }
  27. };
  28. export default locale;