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/locale/uz | |
| parent | 864ce67d89c77d8ef9c3361f80d619853abcf91c (diff) | |
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/locale/uz')
| -rw-r--r-- | node_modules/date-fns/locale/uz/_lib/formatDistance/index.js | 91 | ||||
| -rw-r--r-- | node_modules/date-fns/locale/uz/_lib/formatLong/index.js | 40 | ||||
| -rw-r--r-- | node_modules/date-fns/locale/uz/_lib/formatRelative/index.js | 20 | ||||
| -rw-r--r-- | node_modules/date-fns/locale/uz/_lib/localize/index.js | 132 | ||||
| -rw-r--r-- | node_modules/date-fns/locale/uz/_lib/match/index.js | 107 | ||||
| -rw-r--r-- | node_modules/date-fns/locale/uz/index.d.ts | 4 | ||||
| -rw-r--r-- | node_modules/date-fns/locale/uz/index.js | 35 | ||||
| -rw-r--r-- | node_modules/date-fns/locale/uz/index.js.flow | 35 | ||||
| -rw-r--r-- | node_modules/date-fns/locale/uz/package.json | 5 |
9 files changed, 0 insertions, 469 deletions
diff --git a/node_modules/date-fns/locale/uz/_lib/formatDistance/index.js b/node_modules/date-fns/locale/uz/_lib/formatDistance/index.js deleted file mode 100644 index a661e23..0000000 --- a/node_modules/date-fns/locale/uz/_lib/formatDistance/index.js +++ /dev/null @@ -1,91 +0,0 @@ -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; -var formatDistanceLocale = { - lessThanXSeconds: { - one: 'sekunddan kam', - other: '{{count}} sekunddan kam' - }, - xSeconds: { - one: '1 sekund', - other: '{{count}} sekund' - }, - halfAMinute: 'yarim minut', - lessThanXMinutes: { - one: 'bir minutdan kam', - other: '{{count}} minutdan kam' - }, - xMinutes: { - one: '1 minut', - other: '{{count}} minut' - }, - aboutXHours: { - one: 'tahminan 1 soat', - other: 'tahminan {{count}} soat' - }, - xHours: { - one: '1 soat', - other: '{{count}} soat' - }, - xDays: { - one: '1 kun', - other: '{{count}} kun' - }, - aboutXWeeks: { - one: 'tahminan 1 hafta', - other: 'tahminan {{count}} hafta' - }, - xWeeks: { - one: '1 hafta', - other: '{{count}} hafta' - }, - aboutXMonths: { - one: 'tahminan 1 oy', - other: 'tahminan {{count}} oy' - }, - xMonths: { - one: '1 oy', - other: '{{count}} oy' - }, - aboutXYears: { - one: 'tahminan 1 yil', - other: 'tahminan {{count}} yil' - }, - xYears: { - one: '1 yil', - other: '{{count}} yil' - }, - overXYears: { - one: "1 yildan ko'p", - other: "{{count}} yildan ko'p" - }, - almostXYears: { - one: 'deyarli 1 yil', - other: 'deyarli {{count}} yil' - } -}; -var formatDistance = function formatDistance(token, count, options) { - var result; - var tokenValue = formatDistanceLocale[token]; - if (typeof tokenValue === 'string') { - result = tokenValue; - } else if (count === 1) { - result = tokenValue.one; - } else { - result = tokenValue.other.replace('{{count}}', String(count)); - } - if (options !== null && options !== void 0 && options.addSuffix) { - if (options.comparison && options.comparison > 0) { - return result + ' dan keyin'; - } else { - return result + ' oldin'; - } - } - return result; -}; -var _default = formatDistance; -exports.default = _default; -module.exports = exports.default;
\ No newline at end of file diff --git a/node_modules/date-fns/locale/uz/_lib/formatLong/index.js b/node_modules/date-fns/locale/uz/_lib/formatLong/index.js deleted file mode 100644 index eaaf361..0000000 --- a/node_modules/date-fns/locale/uz/_lib/formatLong/index.js +++ /dev/null @@ -1,40 +0,0 @@ -"use strict"; - -var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; -var _index = _interopRequireDefault(require("../../../_lib/buildFormatLongFn/index.js")); -var dateFormats = { - full: 'EEEE, do MMMM, y', - long: 'do MMMM, y', - medium: 'd MMM, y', - short: 'dd/MM/yyyy' -}; -var timeFormats = { - full: 'h:mm:ss zzzz', - long: 'h:mm:ss z', - medium: 'h:mm:ss', - short: 'h:mm' -}; -var dateTimeFormats = { - any: '{{date}}, {{time}}' -}; -var formatLong = { - date: (0, _index.default)({ - formats: dateFormats, - defaultWidth: 'full' - }), - time: (0, _index.default)({ - formats: timeFormats, - defaultWidth: 'full' - }), - dateTime: (0, _index.default)({ - formats: dateTimeFormats, - defaultWidth: 'any' - }) -}; -var _default = formatLong; -exports.default = _default; -module.exports = exports.default;
\ No newline at end of file diff --git a/node_modules/date-fns/locale/uz/_lib/formatRelative/index.js b/node_modules/date-fns/locale/uz/_lib/formatRelative/index.js deleted file mode 100644 index f1e1767..0000000 --- a/node_modules/date-fns/locale/uz/_lib/formatRelative/index.js +++ /dev/null @@ -1,20 +0,0 @@ -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; -var formatRelativeLocale = { - lastWeek: "'oldingi' eeee p 'da'", - yesterday: "'kecha' p 'da'", - today: "'bugun' p 'da'", - tomorrow: "'ertaga' p 'da'", - nextWeek: "eeee p 'da'", - other: 'P' -}; -var formatRelative = function formatRelative(token, _date, _baseDate, _options) { - return formatRelativeLocale[token]; -}; -var _default = formatRelative; -exports.default = _default; -module.exports = exports.default;
\ No newline at end of file diff --git a/node_modules/date-fns/locale/uz/_lib/localize/index.js b/node_modules/date-fns/locale/uz/_lib/localize/index.js deleted file mode 100644 index 6539791..0000000 --- a/node_modules/date-fns/locale/uz/_lib/localize/index.js +++ /dev/null @@ -1,132 +0,0 @@ -"use strict"; - -var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; -var _index = _interopRequireDefault(require("../../../_lib/buildLocalizeFn/index.js")); -var eraValues = { - narrow: ['M.A', 'M.'], - abbreviated: ['M.A', 'M.'], - wide: ['Miloddan Avvalgi', 'Milodiy'] -}; -var quarterValues = { - narrow: ['1', '2', '3', '4'], - abbreviated: ['CH.1', 'CH.2', 'CH.3', 'CH.4'], - wide: ['1-chi chorak', '2-chi chorak', '3-chi chorak', '4-chi chorak'] -}; - -// Note: in English, the names of days of the week and months are capitalized. -// If you are making a new locale based on this one, check if the same is true for the language you're working on. -// Generally, formatted dates should look like they are in the middle of a sentence, -// e.g. in Spanish language the weekdays and months should be in the lowercase. -var monthValues = { - narrow: ['Y', 'F', 'M', 'A', 'M', 'I', 'I', 'A', 'S', 'O', 'N', 'D'], - abbreviated: ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'Iyun', 'Iyul', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'], - wide: ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'Iyun', 'Iyul', 'Avgust', 'Sentabr', 'Oktabr', 'Noyabr', 'Dekabr'] -}; -var dayValues = { - narrow: ['Y', 'D', 'S', 'CH', 'P', 'J', 'SH'], - short: ['Ya', 'Du', 'Se', 'Cho', 'Pa', 'Ju', 'Sha'], - abbreviated: ['Yak', 'Dush', 'Sesh', 'Chor', 'Pay', 'Jum', 'Shan'], - wide: ['Yakshanba', 'Dushanba', 'Seshanba', 'Chorshanba', 'Payshanba', 'Juma', 'Shanba'] -}; -var dayPeriodValues = { - narrow: { - am: 'a', - pm: 'p', - midnight: 'y.t', - noon: 'p.', - morning: 'ertalab', - afternoon: 'tushdan keyin', - evening: 'kechqurun', - night: 'tun' - }, - abbreviated: { - am: 'AM', - pm: 'PM', - midnight: 'yarim tun', - noon: 'peshin', - morning: 'ertalab', - afternoon: 'tushdan keyin', - evening: 'kechqurun', - night: 'tun' - }, - wide: { - am: 'a.m.', - pm: 'p.m.', - midnight: 'yarim tun', - noon: 'peshin', - morning: 'ertalab', - afternoon: 'tushdan keyin', - evening: 'kechqurun', - night: 'tun' - } -}; -var formattingDayPeriodValues = { - narrow: { - am: 'a', - pm: 'p', - midnight: 'y.t', - noon: 'p.', - morning: 'ertalab', - afternoon: 'tushdan keyin', - evening: 'kechqurun', - night: 'tun' - }, - abbreviated: { - am: 'AM', - pm: 'PM', - midnight: 'yarim tun', - noon: 'peshin', - morning: 'ertalab', - afternoon: 'tushdan keyin', - evening: 'kechqurun', - night: 'tun' - }, - wide: { - am: 'a.m.', - pm: 'p.m.', - midnight: 'yarim tun', - noon: 'peshin', - morning: 'ertalab', - afternoon: 'tushdan keyin', - evening: 'kechqurun', - night: 'tun' - } -}; -var ordinalNumber = function ordinalNumber(dirtyNumber, _options) { - return String(dirtyNumber); -}; -var localize = { - ordinalNumber: ordinalNumber, - era: (0, _index.default)({ - values: eraValues, - defaultWidth: 'wide' - }), - quarter: (0, _index.default)({ - values: quarterValues, - defaultWidth: 'wide', - argumentCallback: function argumentCallback(quarter) { - return quarter - 1; - } - }), - month: (0, _index.default)({ - values: monthValues, - defaultWidth: 'wide' - }), - day: (0, _index.default)({ - values: dayValues, - defaultWidth: 'wide' - }), - dayPeriod: (0, _index.default)({ - values: dayPeriodValues, - defaultWidth: 'wide', - formattingValues: formattingDayPeriodValues, - defaultFormattingWidth: 'wide' - }) -}; -var _default = localize; -exports.default = _default; -module.exports = exports.default;
\ No newline at end of file diff --git a/node_modules/date-fns/locale/uz/_lib/match/index.js b/node_modules/date-fns/locale/uz/_lib/match/index.js deleted file mode 100644 index 51297ce..0000000 --- a/node_modules/date-fns/locale/uz/_lib/match/index.js +++ /dev/null @@ -1,107 +0,0 @@ -"use strict"; - -var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; -var _index = _interopRequireDefault(require("../../../_lib/buildMatchFn/index.js")); -var _index2 = _interopRequireDefault(require("../../../_lib/buildMatchPatternFn/index.js")); -var matchOrdinalNumberPattern = /^(\d+)(chi)?/i; -var parseOrdinalNumberPattern = /\d+/i; -var matchEraPatterns = { - narrow: /^(m\.a|m\.)/i, - abbreviated: /^(m\.a\.?\s?m\.?)/i, - wide: /^(miloddan avval|miloddan keyin)/i -}; -var parseEraPatterns = { - any: [/^b/i, /^(a|c)/i] -}; -var matchQuarterPatterns = { - narrow: /^[1234]/i, - abbreviated: /^q[1234]/i, - wide: /^[1234](chi)? chorak/i -}; -var parseQuarterPatterns = { - any: [/1/i, /2/i, /3/i, /4/i] -}; -var matchMonthPatterns = { - narrow: /^[yfmasond]/i, - abbreviated: /^(yan|fev|mar|apr|may|iyun|iyul|avg|sen|okt|noy|dek)/i, - wide: /^(yanvar|fevral|mart|aprel|may|iyun|iyul|avgust|sentabr|oktabr|noyabr|dekabr)/i -}; -var parseMonthPatterns = { - narrow: [/^y/i, /^f/i, /^m/i, /^a/i, /^m/i, /^i/i, /^i/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i], - any: [/^ya/i, /^f/i, /^mar/i, /^ap/i, /^may/i, /^iyun/i, /^iyul/i, /^av/i, /^s/i, /^o/i, /^n/i, /^d/i] -}; -var matchDayPatterns = { - narrow: /^[ydschj]/i, - short: /^(ya|du|se|cho|pa|ju|sha)/i, - abbreviated: /^(yak|dush|sesh|chor|pay|jum|shan)/i, - wide: /^(yakshanba|dushanba|seshanba|chorshanba|payshanba|juma|shanba)/i -}; -var parseDayPatterns = { - narrow: [/^y/i, /^d/i, /^s/i, /^ch/i, /^p/i, /^j/i, /^sh/i], - any: [/^ya/i, /^d/i, /^se/i, /^ch/i, /^p/i, /^j/i, /^sh/i] -}; -var matchDayPeriodPatterns = { - narrow: /^(a|p|y\.t|p| (ertalab|tushdan keyin|kechqurun|tun))/i, - any: /^([ap]\.?\s?m\.?|yarim tun|peshin| (ertalab|tushdan keyin|kechqurun|tun))/i -}; -var parseDayPeriodPatterns = { - any: { - am: /^a/i, - pm: /^p/i, - midnight: /^y\.t/i, - noon: /^pe/i, - morning: /ertalab/i, - afternoon: /tushdan keyin/i, - evening: /kechqurun/i, - night: /tun/i - } -}; -var match = { - ordinalNumber: (0, _index2.default)({ - matchPattern: matchOrdinalNumberPattern, - parsePattern: parseOrdinalNumberPattern, - valueCallback: function valueCallback(value) { - return parseInt(value, 10); - } - }), - era: (0, _index.default)({ - matchPatterns: matchEraPatterns, - defaultMatchWidth: 'wide', - parsePatterns: parseEraPatterns, - defaultParseWidth: 'any' - }), - quarter: (0, _index.default)({ - matchPatterns: matchQuarterPatterns, - defaultMatchWidth: 'wide', - parsePatterns: parseQuarterPatterns, - defaultParseWidth: 'any', - valueCallback: function valueCallback(index) { - return index + 1; - } - }), - month: (0, _index.default)({ - matchPatterns: matchMonthPatterns, - defaultMatchWidth: 'wide', - parsePatterns: parseMonthPatterns, - defaultParseWidth: 'any' - }), - day: (0, _index.default)({ - matchPatterns: matchDayPatterns, - defaultMatchWidth: 'wide', - parsePatterns: parseDayPatterns, - defaultParseWidth: 'any' - }), - dayPeriod: (0, _index.default)({ - matchPatterns: matchDayPeriodPatterns, - defaultMatchWidth: 'any', - parsePatterns: parseDayPeriodPatterns, - defaultParseWidth: 'any' - }) -}; -var _default = match; -exports.default = _default; -module.exports = exports.default;
\ No newline at end of file diff --git a/node_modules/date-fns/locale/uz/index.d.ts b/node_modules/date-fns/locale/uz/index.d.ts deleted file mode 100644 index e10b1f6..0000000 --- a/node_modules/date-fns/locale/uz/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it. - -import { uz } from 'date-fns/locale' -export default uz diff --git a/node_modules/date-fns/locale/uz/index.js b/node_modules/date-fns/locale/uz/index.js deleted file mode 100644 index 39d3a2c..0000000 --- a/node_modules/date-fns/locale/uz/index.js +++ /dev/null @@ -1,35 +0,0 @@ -"use strict"; - -var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; -var _index = _interopRequireDefault(require("./_lib/formatDistance/index.js")); -var _index2 = _interopRequireDefault(require("./_lib/formatLong/index.js")); -var _index3 = _interopRequireDefault(require("./_lib/formatRelative/index.js")); -var _index4 = _interopRequireDefault(require("./_lib/localize/index.js")); -var _index5 = _interopRequireDefault(require("./_lib/match/index.js")); -/** - * @type {Locale} - * @category Locales - * @summary Uzbek locale. - * @language Uzbek - * @iso-639-2 uzb - * @author Mukhammadali [@mukhammadali]{@link https://github.com/Mukhammadali} - */ -var locale = { - code: 'uz', - formatDistance: _index.default, - formatLong: _index2.default, - formatRelative: _index3.default, - localize: _index4.default, - match: _index5.default, - options: { - weekStartsOn: 1 /* Monday */, - firstWeekContainsDate: 1 - } -}; -var _default = locale; -exports.default = _default; -module.exports = exports.default;
\ No newline at end of file diff --git a/node_modules/date-fns/locale/uz/index.js.flow b/node_modules/date-fns/locale/uz/index.js.flow deleted file mode 100644 index b9dfe66..0000000 --- a/node_modules/date-fns/locale/uz/index.js.flow +++ /dev/null @@ -1,35 +0,0 @@ -// @flow -// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it. - -export type Locale = { - code?: string, - formatDistance?: (...args: Array<any>) => any, - formatRelative?: (...args: Array<any>) => any, - localize?: { - ordinalNumber: (...args: Array<any>) => any, - era: (...args: Array<any>) => any, - quarter: (...args: Array<any>) => any, - month: (...args: Array<any>) => any, - day: (...args: Array<any>) => any, - dayPeriod: (...args: Array<any>) => any, - }, - formatLong?: { - date: (...args: Array<any>) => any, - time: (...args: Array<any>) => any, - dateTime: (...args: Array<any>) => any, - }, - match?: { - ordinalNumber: (...args: Array<any>) => any, - era: (...args: Array<any>) => any, - quarter: (...args: Array<any>) => any, - month: (...args: Array<any>) => any, - day: (...args: Array<any>) => any, - dayPeriod: (...args: Array<any>) => any, - }, - options?: { - weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6, - firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7, - }, -} - -declare module.exports: Locale diff --git a/node_modules/date-fns/locale/uz/package.json b/node_modules/date-fns/locale/uz/package.json deleted file mode 100644 index 7e4fbd0..0000000 --- a/node_modules/date-fns/locale/uz/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "sideEffects": false, - "module": "../../esm/locale/uz/index.js", - "typings": "../../typings.d.ts" -}
\ No newline at end of file |
