timepiece/node_modules/date-fns/locale/fy/cdn.js.map

1 line
26 KiB
Plaintext
Raw Normal View History

2024-05-14 14:54:12 +00:00
{"version":3,"file":"cdn.js","names":["_window$dateFns","__defProp","Object","defineProperty","__export","target","all","name","get","enumerable","configurable","set","newValue","formatDistanceLocale","lessThanXSeconds","one","other","xSeconds","halfAMinute","lessThanXMinutes","xMinutes","aboutXHours","xHours","xDays","aboutXWeeks","xWeeks","aboutXMonths","xMonths","aboutXYears","xYears","overXYears","almostXYears","formatDistance","token","count","options","result","tokenValue","replace","String","addSuffix","comparison","buildFormatLongFn","args","arguments","length","undefined","width","defaultWidth","format","formats","dateFormats","full","long","medium","short","timeFormats","dateTimeFormats","formatLong","date","time","dateTime","formatRelativeLocale","lastWeek","yesterday","today","tomorrow","nextWeek","formatRelative","_date","_baseDate","_options","buildLocalizeFn","value","context","valuesArray","formattingValues","defaultFormattingWidth","values","index","argumentCallback","eraValues","narrow","abbreviated","wide","quarterValues","monthValues","dayValues","dayPeriodValues","am","pm","midnight","noon","morning","afternoon","evening","night","ordinalNumber","dirtyNumber","number","Number","localize","era","quarter","month","day","dayPeriod","buildMatchFn","string","matchPattern","matchPatterns","defaultMatchWidth","matchResult","match","matchedString","parsePatterns","defaultParseWidth","key","Array","isArray","findIndex","pattern","test","findKey","valueCallback","rest","slice","object","predicate","prototype","hasOwnProperty","call","array","buildMatchPatternFn","parseResult","parsePattern","matchOrdinalNumberPattern","parseOrdinalNumberPattern","matchEraPatterns","parseEraPatterns","any","matchQuarterPatterns","parseQuarterPatterns","matchMonthPatterns","parseMonthPatterns","matchDayPatterns","parseDayPatterns","matchDayPeriodPatterns","parseDayPeriodPatterns","parseInt","fy","code","weekStartsOn","firstWeekContainsDate","window","dateFns","_objectSpread","locale"],"sources":["cdn.js"],"sourcesContent":["(() => { var __defProp = Object.defineProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, {\n get: all[name],\n enumerable: true,\n configurable: true,\n set: (newValue) => all[name] = () => newValue\n });\n};\n\n// lib/locale/fy/_lib/formatDistance.mjs\nvar formatDistanceLocale = {\n lessThanXSeconds: {\n one: \"minder as 1 sekonde\",\n other: \"minder as {{count}} sekonden\"\n },\n xSeconds: {\n one: \"1 sekonde\",\n other: \"{{count}} sekonden\"\n },\n halfAMinute: \"oardel min\\xFAt\",\n lessThanXMinutes: {\n one: \"minder as 1 min\\xFAt\",\n other: \"minder as {{count}} minuten\"\n },\n xMinutes: {\n one: \"1 min\\xFAt\",\n other: \"{{count}} minuten\"\n },\n aboutXHours: {\n one: \"sawat 1 oere\",\n other: \"sawat {{count}} oere\"\n },\n xHours: {\n one: \"1 oere\",\n other: \"{{count}} oere\"\n },\n xDays: {\n one: \"1 dei\",\n other: \"{{count}} dagen\"\n },\n aboutXWeeks: {\n one: \"sawat 1 wike\",\n other: \"sawat {{count}} wiken\"\n },\n xWeeks: {\n one: \"1 wike\",\n other: \"{{count}} wiken\"\n },\n aboutXMonths: {\n one: \"sawat 1 moanne\",\n other: \"sawat {{count}} moannen\"\n },\n xMonths: {\n one: \"1 moanne\",\n other: \"{{count}} moannen\"\n },\n aboutXYears: {\n one: \"sawat 1 jier\",\n other: \"sawat {{count}} jier\"\n },\n xYears: {\n one: \"1 jier\",\n other: \"{{count}} jier\"\n },\n overXYears: {\n one: \"mear as 1 jier\",\n other: \"mear as {{count}}s jier\"\n },\n almostXYears: {\n one: \"hast 1 jier\",\n other: \"hast {{count}} jier\"\n }\n};\nvar formatDistance = (token, count, options) => {\n let result;\n const tokenValue = formatDistanceLocale[token];\n if (typeof tokenValue === \"string\") {\n result = tokenValue;\n } else if (count === 1) {\n result = tokenValue.one;\n } else {\n result = tokenValue.other.replace(\"{{count}}\", String(count));\n }\n if (options?.addSuffi