lb.js 762 B

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