index.js 854 B

123456789101112131415161718192021222324252627
  1. import formatDistance from "./_lib/formatDistance/index.js";
  2. import formatLong from "./_lib/formatLong/index.js";
  3. import formatRelative from "./_lib/formatRelative/index.js";
  4. import localize from "./_lib/localize/index.js";
  5. import match from "./_lib/match/index.js";
  6. /**
  7. * @type {Locale}
  8. * @category Locales
  9. * @summary Arabic locale (Modern Standard Arabic - Al-fussha).
  10. * @language Modern Standard Arabic
  11. * @iso-639-2 ara
  12. * @author Abdallah Hassan [@AbdallahAHO]{@link https://github.com/AbdallahAHO}
  13. * @author Koussay Haj Kacem [@essana3]{@link https://github.com/essana3}
  14. */
  15. var locale = {
  16. code: 'ar',
  17. formatDistance: formatDistance,
  18. formatLong: formatLong,
  19. formatRelative: formatRelative,
  20. localize: localize,
  21. match: match,
  22. options: {
  23. weekStartsOn: 6 /* Saturday */,
  24. firstWeekContainsDate: 1
  25. }
  26. };
  27. export default locale;