index.js 643 B

1234567891011121314151617181920212223242526
  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 Azerbaijani locale.
  10. * @language Azerbaijani
  11. * @iso-639-2 aze
  12. */
  13. var locale = {
  14. code: 'az',
  15. formatDistance: formatDistance,
  16. formatLong: formatLong,
  17. formatRelative: formatRelative,
  18. localize: localize,
  19. match: match,
  20. options: {
  21. weekStartsOn: 1,
  22. firstWeekContainsDate: 1
  23. }
  24. };
  25. export default locale;