ht.js 834 B

1234567891011121314151617181920212223242526272829
  1. import { formatDistance } from "./ht/_lib/formatDistance.js";
  2. import { formatLong } from "./ht/_lib/formatLong.js";
  3. import { formatRelative } from "./ht/_lib/formatRelative.js";
  4. import { localize } from "./ht/_lib/localize.js";
  5. import { match } from "./ht/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Haitian Creole locale.
  9. * @language Haitian Creole
  10. * @iso-639-2 hat
  11. * @author Rubens Mariuzzo [@rmariuzzo](https://github.com/rmariuzzo)
  12. * @author Watson Marcelain [@watsongm24](https://github.com/watsongm24)
  13. */
  14. export const ht = {
  15. code: "ht",
  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 ht;