ko.js 869 B

123456789101112131415161718192021222324252627282930
  1. import { formatDistance } from "./ko/_lib/formatDistance.js";
  2. import { formatLong } from "./ko/_lib/formatLong.js";
  3. import { formatRelative } from "./ko/_lib/formatRelative.js";
  4. import { localize } from "./ko/_lib/localize.js";
  5. import { match } from "./ko/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Korean locale.
  9. * @language Korean
  10. * @iso-639-2 kor
  11. * @author Hong Chulju [@angdev](https://github.com/angdev)
  12. * @author Lee Seoyoen [@iamssen](https://github.com/iamssen)
  13. * @author Taiki IKeda [@so99ynoodles](https://github.com/so99ynoodles)
  14. */
  15. export const ko = {
  16. code: "ko",
  17. formatDistance: formatDistance,
  18. formatLong: formatLong,
  19. formatRelative: formatRelative,
  20. localize: localize,
  21. match: match,
  22. options: {
  23. weekStartsOn: 0 /* Sunday */,
  24. firstWeekContainsDate: 1,
  25. },
  26. };
  27. // Fallback for modularized imports:
  28. export default ko;