hr.js 870 B

123456789101112131415161718192021222324252627282930
  1. import { formatDistance } from "./hr/_lib/formatDistance.js";
  2. import { formatLong } from "./hr/_lib/formatLong.js";
  3. import { formatRelative } from "./hr/_lib/formatRelative.js";
  4. import { localize } from "./hr/_lib/localize.js";
  5. import { match } from "./hr/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Croatian locale.
  9. * @language Croatian
  10. * @iso-639-2 hrv
  11. * @author Matija Marohnić [@silvenon](https://github.com/silvenon)
  12. * @author Manico [@manico](https://github.com/manico)
  13. * @author Ivan Jeržabek [@jerzabek](https://github.com/jerzabek)
  14. */
  15. export const hr = {
  16. code: "hr",
  17. formatDistance: formatDistance,
  18. formatLong: formatLong,
  19. formatRelative: formatRelative,
  20. localize: localize,
  21. match: match,
  22. options: {
  23. weekStartsOn: 1 /* Monday */,
  24. firstWeekContainsDate: 1,
  25. },
  26. };
  27. // Fallback for modularized imports:
  28. export default hr;