is.js 810 B

1234567891011121314151617181920212223242526272829
  1. import { formatDistance } from "./is/_lib/formatDistance.js";
  2. import { formatLong } from "./is/_lib/formatLong.js";
  3. import { formatRelative } from "./is/_lib/formatRelative.js";
  4. import { localize } from "./is/_lib/localize.js";
  5. import { match } from "./is/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Icelandic locale.
  9. * @language Icelandic
  10. * @iso-639-2 isl
  11. * @author Derek Blank [@derekblank](https://github.com/derekblank)
  12. * @author Arnór Ýmir [@lamayg](https://github.com/lamayg)
  13. */
  14. export const is = {
  15. code: "is",
  16. formatDistance: formatDistance,
  17. formatLong: formatLong,
  18. formatRelative: formatRelative,
  19. localize: localize,
  20. match: match,
  21. options: {
  22. weekStartsOn: 1 /* Monday */,
  23. firstWeekContainsDate: 4,
  24. },
  25. };
  26. // Fallback for modularized imports:
  27. export default is;