ja.js 1008 B

1234567891011121314151617181920212223242526272829303132
  1. import { formatDistance } from "./ja/_lib/formatDistance.js";
  2. import { formatLong } from "./ja/_lib/formatLong.js";
  3. import { formatRelative } from "./ja/_lib/formatRelative.js";
  4. import { localize } from "./ja/_lib/localize.js";
  5. import { match } from "./ja/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Japanese locale.
  9. * @language Japanese
  10. * @iso-639-2 jpn
  11. * @author Thomas Eilmsteiner [@DeMuu](https://github.com/DeMuu)
  12. * @author Yamagishi Kazutoshi [@ykzts](https://github.com/ykzts)
  13. * @author Luca Ban [@mesqueeb](https://github.com/mesqueeb)
  14. * @author Terrence Lam [@skyuplam](https://github.com/skyuplam)
  15. * @author Taiki IKeda [@so99ynoodles](https://github.com/so99ynoodles)
  16. */
  17. export const ja = {
  18. code: "ja",
  19. formatDistance: formatDistance,
  20. formatLong: formatLong,
  21. formatRelative: formatRelative,
  22. localize: localize,
  23. match: match,
  24. options: {
  25. weekStartsOn: 0 /* Sunday */,
  26. firstWeekContainsDate: 1,
  27. },
  28. };
  29. // Fallback for modularized imports:
  30. export default ja;