index.js 867 B

12345678910111213141516171819202122232425262728293031
  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 Korean locale.
  10. * @language Korean
  11. * @iso-639-2 kor
  12. * @author Hong Chulju [@angdev]{@link https://github.com/angdev}
  13. * @author Lee Seoyoen [@iamssen]{@link https://github.com/iamssen}
  14. * @author Taiki IKeda [@so99ynoodles]{@link https://github.com/so99ynoodles}
  15. */
  16. var locale = {
  17. code: 'ko',
  18. formatDistance: formatDistance,
  19. formatLong: formatLong,
  20. formatRelative: formatRelative,
  21. localize: localize,
  22. match: match,
  23. options: {
  24. weekStartsOn: 0
  25. /* Sunday */
  26. ,
  27. firstWeekContainsDate: 1
  28. }
  29. };
  30. export default locale;