ar-MA.js 801 B

1234567891011121314151617181920212223242526272829
  1. import { formatDistance } from "./ar-MA/_lib/formatDistance.js";
  2. import { formatLong } from "./ar-MA/_lib/formatLong.js";
  3. import { formatRelative } from "./ar-MA/_lib/formatRelative.js";
  4. import { localize } from "./ar-MA/_lib/localize.js";
  5. import { match } from "./ar-MA/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Arabic locale (Moroccan Arabic).
  9. * @language Moroccan Arabic
  10. * @iso-639-2 ara
  11. * @author Achraf Rrami [@rramiachraf](https://github.com/rramiachraf)
  12. */
  13. export const arMA = {
  14. code: "ar-MA",
  15. formatDistance: formatDistance,
  16. formatLong: formatLong,
  17. formatRelative: formatRelative,
  18. localize: localize,
  19. match: match,
  20. options: {
  21. // Monday is 1
  22. weekStartsOn: 1,
  23. firstWeekContainsDate: 1,
  24. },
  25. };
  26. // Fallback for modularized imports:
  27. export default arMA;