index.js 750 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 Japanese (Hiragana) locale.
  10. * @language Japanese (Hiragana)
  11. * @iso-639-2 jpn
  12. * @author Eri Hiramatsu [@Eritutteo]{@link https://github.com/Eritutteo}
  13. */
  14. var locale = {
  15. code: 'ja-Hira',
  16. formatDistance: formatDistance,
  17. formatLong: formatLong,
  18. formatRelative: formatRelative,
  19. localize: localize,
  20. match: match,
  21. options: {
  22. weekStartsOn: 0 /* Sunday */,
  23. firstWeekContainsDate: 1
  24. }
  25. };
  26. export default locale;