aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/esm/locale/ko/_lib/localize
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-29 11:49:28 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-29 11:49:28 -0700
commitd55b767039605256c736166a942a9138e3eacfd7 (patch)
tree947063b634c50d438a794325f13275e134aa5993 /node_modules/date-fns/esm/locale/ko/_lib/localize
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/esm/locale/ko/_lib/localize')
-rw-r--r--node_modules/date-fns/esm/locale/ko/_lib/localize/index.js128
1 files changed, 0 insertions, 128 deletions
diff --git a/node_modules/date-fns/esm/locale/ko/_lib/localize/index.js b/node_modules/date-fns/esm/locale/ko/_lib/localize/index.js
deleted file mode 100644
index 224f368..0000000
--- a/node_modules/date-fns/esm/locale/ko/_lib/localize/index.js
+++ /dev/null
@@ -1,128 +0,0 @@
-import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js";
-var eraValues = {
- narrow: ['BC', 'AD'],
- abbreviated: ['BC', 'AD'],
- wide: ['기원전', '서기']
-};
-var quarterValues = {
- narrow: ['1', '2', '3', '4'],
- abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
- wide: ['1분기', '2분기', '3분기', '4분기']
-};
-var monthValues = {
- narrow: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'],
- abbreviated: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'],
- wide: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월']
-};
-var dayValues = {
- narrow: ['일', '월', '화', '수', '목', '금', '토'],
- short: ['일', '월', '화', '수', '목', '금', '토'],
- abbreviated: ['일', '월', '화', '수', '목', '금', '토'],
- wide: ['일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일']
-};
-var dayPeriodValues = {
- narrow: {
- am: '오전',
- pm: '오후',
- midnight: '자정',
- noon: '정오',
- morning: '아침',
- afternoon: '오후',
- evening: '저녁',
- night: '밤'
- },
- abbreviated: {
- am: '오전',
- pm: '오후',
- midnight: '자정',
- noon: '정오',
- morning: '아침',
- afternoon: '오후',
- evening: '저녁',
- night: '밤'
- },
- wide: {
- am: '오전',
- pm: '오후',
- midnight: '자정',
- noon: '정오',
- morning: '아침',
- afternoon: '오후',
- evening: '저녁',
- night: '밤'
- }
-};
-var formattingDayPeriodValues = {
- narrow: {
- am: '오전',
- pm: '오후',
- midnight: '자정',
- noon: '정오',
- morning: '아침',
- afternoon: '오후',
- evening: '저녁',
- night: '밤'
- },
- abbreviated: {
- am: '오전',
- pm: '오후',
- midnight: '자정',
- noon: '정오',
- morning: '아침',
- afternoon: '오후',
- evening: '저녁',
- night: '밤'
- },
- wide: {
- am: '오전',
- pm: '오후',
- midnight: '자정',
- noon: '정오',
- morning: '아침',
- afternoon: '오후',
- evening: '저녁',
- night: '밤'
- }
-};
-var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
- var number = Number(dirtyNumber);
- var unit = String(options === null || options === void 0 ? void 0 : options.unit);
- switch (unit) {
- case 'minute':
- case 'second':
- return String(number);
- case 'date':
- return number + '일';
- default:
- return number + '번째';
- }
-};
-var localize = {
- ordinalNumber: ordinalNumber,
- era: buildLocalizeFn({
- values: eraValues,
- defaultWidth: 'wide'
- }),
- quarter: buildLocalizeFn({
- values: quarterValues,
- defaultWidth: 'wide',
- argumentCallback: function argumentCallback(quarter) {
- return quarter - 1;
- }
- }),
- month: buildLocalizeFn({
- values: monthValues,
- defaultWidth: 'wide'
- }),
- day: buildLocalizeFn({
- values: dayValues,
- defaultWidth: 'wide'
- }),
- dayPeriod: buildLocalizeFn({
- values: dayPeriodValues,
- defaultWidth: 'wide',
- formattingValues: formattingDayPeriodValues,
- defaultFormattingWidth: 'wide'
- })
-};
-export default localize; \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage