diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-06-29 11:49:28 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-06-29 11:49:28 -0700 |
| commit | d55b767039605256c736166a942a9138e3eacfd7 (patch) | |
| tree | 947063b634c50d438a794325f13275e134aa5993 /node_modules/date-fns/esm/locale/bs/_lib/localize/index.js | |
| parent | 864ce67d89c77d8ef9c3361f80d619853abcf91c (diff) | |
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/esm/locale/bs/_lib/localize/index.js')
| -rw-r--r-- | node_modules/date-fns/esm/locale/bs/_lib/localize/index.js | 126 |
1 files changed, 0 insertions, 126 deletions
diff --git a/node_modules/date-fns/esm/locale/bs/_lib/localize/index.js b/node_modules/date-fns/esm/locale/bs/_lib/localize/index.js deleted file mode 100644 index 60600a1..0000000 --- a/node_modules/date-fns/esm/locale/bs/_lib/localize/index.js +++ /dev/null @@ -1,126 +0,0 @@ -import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js"; -var eraValues = { - narrow: ['pr.n.e.', 'AD'], - abbreviated: ['pr. Hr.', 'po. Hr.'], - wide: ['Prije Hrista', 'Poslije Hrista'] -}; -var quarterValues = { - narrow: ['1.', '2.', '3.', '4.'], - abbreviated: ['1. kv.', '2. kv.', '3. kv.', '4. kv.'], - wide: ['1. kvartal', '2. kvartal', '3. kvartal', '4. kvartal'] -}; -var monthValues = { - narrow: ['1.', '2.', '3.', '4.', '5.', '6.', '7.', '8.', '9.', '10.', '11.', '12.'], - abbreviated: ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'avg', 'sep', 'okt', 'nov', 'dec'], - wide: ['januar', 'februar', 'mart', 'april', 'maj', 'juni', 'juli', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'] -}; -var formattingMonthValues = { - narrow: ['1.', '2.', '3.', '4.', '5.', '6.', '7.', '8.', '9.', '10.', '11.', '12.'], - abbreviated: ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'avg', 'sep', 'okt', 'nov', 'dec'], - wide: ['januar', 'februar', 'mart', 'april', 'maj', 'juni', 'juli', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'] -}; -var dayValues = { - narrow: ['N', 'P', 'U', 'S', 'Č', 'P', 'S'], - short: ['ned', 'pon', 'uto', 'sre', 'čet', 'pet', 'sub'], - abbreviated: ['ned', 'pon', 'uto', 'sre', 'čet', 'pet', 'sub'], - wide: ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'] -}; -var dayPeriodValues = { - narrow: { - am: 'AM', - pm: 'PM', - midnight: 'ponoć', - noon: 'podne', - morning: 'ujutru', - afternoon: 'popodne', - evening: 'uveče', - night: 'noću' - }, - abbreviated: { - am: 'AM', - pm: 'PM', - midnight: 'ponoć', - noon: 'podne', - morning: 'ujutru', - afternoon: 'popodne', - evening: 'uveče', - night: 'noću' - }, - wide: { - am: 'AM', - pm: 'PM', - midnight: 'ponoć', - noon: 'podne', - morning: 'ujutru', - afternoon: 'poslije podne', - evening: 'uveče', - night: 'noću' - } -}; -var formattingDayPeriodValues = { - narrow: { - am: 'AM', - pm: 'PM', - midnight: 'ponoć', - noon: 'podne', - morning: 'ujutru', - afternoon: 'popodne', - evening: 'uveče', - night: 'noću' - }, - abbreviated: { - am: 'AM', - pm: 'PM', - midnight: 'ponoć', - noon: 'podne', - morning: 'ujutru', - afternoon: 'popodne', - evening: 'uveče', - night: 'noću' - }, - wide: { - am: 'AM', - pm: 'PM', - midnight: 'ponoć', - noon: 'podne', - morning: 'ujutru', - afternoon: 'poslije podne', - evening: 'uveče', - night: 'noću' - } -}; -var ordinalNumber = function ordinalNumber(dirtyNumber, _options) { - var number = Number(dirtyNumber); - return String(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', - formattingValues: formattingMonthValues, - defaultFormattingWidth: '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 |
