index.js 862 B

1234567891011121314151617181920212223242526272829
  1. import formatDistance from "../en-US/_lib/formatDistance/index.js";
  2. import formatLong from "./_lib/formatLong/index.js";
  3. import formatRelative from "../en-US/_lib/formatRelative/index.js";
  4. import localize from "../en-US/_lib/localize/index.js";
  5. import match from "../en-US/_lib/match/index.js";
  6. /**
  7. * @type {Locale}
  8. * @category Locales
  9. * @summary English locale (India).
  10. * @language English
  11. * @iso-639-2 eng
  12. * @author Galeel Bhasha Satthar [@gbhasha]{@link https://github.com/gbhasha}
  13. */
  14. var locale = {
  15. code: 'en-IN',
  16. formatDistance: formatDistance,
  17. formatLong: formatLong,
  18. formatRelative: formatRelative,
  19. localize: localize,
  20. match: match,
  21. options: {
  22. weekStartsOn: 1,
  23. // Monday is the first day of the week.
  24. firstWeekContainsDate: 4 // The week that contains Jan 4th is the first week of the year.
  25. }
  26. };
  27. export default locale;