he.js 733 B

12345678910111213141516171819202122232425262728
  1. import { formatDistance } from "./he/_lib/formatDistance.js";
  2. import { formatLong } from "./he/_lib/formatLong.js";
  3. import { formatRelative } from "./he/_lib/formatRelative.js";
  4. import { localize } from "./he/_lib/localize.js";
  5. import { match } from "./he/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Hebrew locale.
  9. * @language Hebrew
  10. * @iso-639-2 heb
  11. * @author Nir Lahad [@nirlah](https://github.com/nirlah)
  12. */
  13. export const he = {
  14. code: "he",
  15. formatDistance: formatDistance,
  16. formatLong: formatLong,
  17. formatRelative: formatRelative,
  18. localize: localize,
  19. match: match,
  20. options: {
  21. weekStartsOn: 0 /* Sunday */,
  22. firstWeekContainsDate: 1,
  23. },
  24. };
  25. // Fallback for modularized imports:
  26. export default he;