| ; | |
| var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | |
| if (k2 === undefined) k2 = k; | |
| var desc = Object.getOwnPropertyDescriptor(m, k); | |
| if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | |
| desc = { enumerable: true, get: function() { return m[k]; } }; | |
| } | |
| Object.defineProperty(o, k2, desc); | |
| }) : (function(o, m, k, k2) { | |
| if (k2 === undefined) k2 = k; | |
| o[k2] = m[k]; | |
| })); | |
| var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | |
| Object.defineProperty(o, "default", { enumerable: true, value: v }); | |
| }) : function(o, v) { | |
| o["default"] = v; | |
| }); | |
| var __importStar = (this && this.__importStar) || function (mod) { | |
| if (mod && mod.__esModule) return mod; | |
| var result = {}; | |
| if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | |
| __setModuleDefault(result, mod); | |
| return result; | |
| }; | |
| Object.defineProperty(exports, "__esModule", { value: true }); | |
| exports.default = default_1; | |
| const util = __importStar(require("../core/util.cjs")); | |
| const error = () => { | |
| const Sizable = { | |
| string: { unit: "àmi", verb: "ní" }, | |
| file: { unit: "bytes", verb: "ní" }, | |
| array: { unit: "nkan", verb: "ní" }, | |
| set: { unit: "nkan", verb: "ní" }, | |
| }; | |
| function getSizing(origin) { | |
| return Sizable[origin] ?? null; | |
| } | |
| const parsedType = (data) => { | |
| const t = typeof data; | |
| switch (t) { | |
| case "number": { | |
| return Number.isNaN(data) ? "NaN" : "nọ́mbà"; | |
| } | |
| case "object": { | |
| if (Array.isArray(data)) { | |
| return "akopọ"; | |
| } | |
| if (data === null) { | |
| return "null"; | |
| } | |
| if (Object.getPrototypeOf(data) !== Object.prototype && data.constructor) { | |
| return data.constructor.name; | |
| } | |
| } | |
| } | |
| return t; | |
| }; | |
| const Nouns = { | |
| regex: "ẹ̀rọ ìbáwọlé", | |
| email: "àdírẹ́sì ìmẹ́lì", | |
| url: "URL", | |
| emoji: "emoji", | |
| uuid: "UUID", | |
| uuidv4: "UUIDv4", | |
| uuidv6: "UUIDv6", | |
| nanoid: "nanoid", | |
| guid: "GUID", | |
| cuid: "cuid", | |
| cuid2: "cuid2", | |
| ulid: "ULID", | |
| xid: "XID", | |
| ksuid: "KSUID", | |
| datetime: "àkókò ISO", | |
| date: "ọjọ́ ISO", | |
| time: "àkókò ISO", | |
| duration: "àkókò tó pé ISO", | |
| ipv4: "àdírẹ́sì IPv4", | |
| ipv6: "àdírẹ́sì IPv6", | |
| cidrv4: "àgbègbè IPv4", | |
| cidrv6: "àgbègbè IPv6", | |
| base64: "ọ̀rọ̀ tí a kọ́ ní base64", | |
| base64url: "ọ̀rọ̀ base64url", | |
| json_string: "ọ̀rọ̀ JSON", | |
| e164: "nọ́mbà E.164", | |
| jwt: "JWT", | |
| template_literal: "ẹ̀rọ ìbáwọlé", | |
| }; | |
| return (issue) => { | |
| switch (issue.code) { | |
| case "invalid_type": | |
| return `Ìbáwọlé aṣìṣe: a ní láti fi ${issue.expected}, àmọ̀ a rí ${parsedType(issue.input)}`; | |
| case "invalid_value": | |
| if (issue.values.length === 1) | |
| return `Ìbáwọlé aṣìṣe: a ní láti fi ${util.stringifyPrimitive(issue.values[0])}`; | |
| return `Àṣàyàn aṣìṣe: yan ọ̀kan lára ${util.joinValues(issue.values, "|")}`; | |
| case "too_big": { | |
| const adj = issue.inclusive ? "<=" : "<"; | |
| const sizing = getSizing(issue.origin); | |
| if (sizing) | |
| return `Tó pọ̀ jù: a ní láti jẹ́ pé ${issue.origin ?? "iye"} ${sizing.verb} ${adj}${issue.maximum} ${sizing.unit}`; | |
| return `Tó pọ̀ jù: a ní láti jẹ́ ${adj}${issue.maximum}`; | |
| } | |
| case "too_small": { | |
| const adj = issue.inclusive ? ">=" : ">"; | |
| const sizing = getSizing(issue.origin); | |
| if (sizing) | |
| return `Kéré ju: a ní láti jẹ́ pé ${issue.origin} ${sizing.verb} ${adj}${issue.minimum} ${sizing.unit}`; | |
| return `Kéré ju: a ní láti jẹ́ ${adj}${issue.minimum}`; | |
| } | |
| case "invalid_format": { | |
| const _issue = issue; | |
| if (_issue.format === "starts_with") | |
| return `Ọ̀rọ̀ aṣìṣe: gbọ́dọ̀ bẹ̀rẹ̀ pẹ̀lú "${_issue.prefix}"`; | |
| if (_issue.format === "ends_with") | |
| return `Ọ̀rọ̀ aṣìṣe: gbọ́dọ̀ parí pẹ̀lú "${_issue.suffix}"`; | |
| if (_issue.format === "includes") | |
| return `Ọ̀rọ̀ aṣìṣe: gbọ́dọ̀ ní "${_issue.includes}"`; | |
| if (_issue.format === "regex") | |
| return `Ọ̀rọ̀ aṣìṣe: gbọ́dọ̀ bá àpẹẹrẹ mu ${_issue.pattern}`; | |
| return `Aṣìṣe: ${Nouns[_issue.format] ?? issue.format}`; | |
| } | |
| case "not_multiple_of": | |
| return `Nọ́mbà aṣìṣe: gbọ́dọ̀ jẹ́ èyà pípín ti ${issue.divisor}`; | |
| case "unrecognized_keys": | |
| return `Bọtìnì àìmọ̀: ${util.joinValues(issue.keys, ", ")}`; | |
| case "invalid_key": | |
| return `Bọtìnì aṣìṣe nínú ${issue.origin}`; | |
| case "invalid_union": | |
| return "Ìbáwọlé aṣìṣe"; | |
| case "invalid_element": | |
| return `Iye aṣìṣe nínú ${issue.origin}`; | |
| default: | |
| return "Ìbáwọlé aṣìṣe"; | |
| } | |
| }; | |
| }; | |
| function default_1() { | |
| return { | |
| localeError: error(), | |
| }; | |
| } | |
| module.exports = exports.default; | |
Xet Storage Details
- Size:
- 5.91 kB
- Xet hash:
- 9109b06b8ad9431c67b07309b6c9b573a91e56a0a47ce8ada1948c5aaf2fa6b4
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.