Buckets:
| ; | |
| 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.parsedType = void 0; | |
| exports.default = default_1; | |
| const util = __importStar(require("../core/util.cjs")); | |
| const parsedType = (data) => { | |
| const t = typeof data; | |
| switch (t) { | |
| case "number": { | |
| return Number.isNaN(data) ? "NaN" : "number"; | |
| } | |
| case "object": { | |
| if (Array.isArray(data)) { | |
| return "array"; | |
| } | |
| if (data === null) { | |
| return "null"; | |
| } | |
| if (Object.getPrototypeOf(data) !== Object.prototype && data.constructor) { | |
| return data.constructor.name; | |
| } | |
| } | |
| } | |
| return t; | |
| }; | |
| exports.parsedType = parsedType; | |
| const error = () => { | |
| const Sizable = { | |
| string: { unit: "characters", verb: "to have" }, | |
| file: { unit: "bytes", verb: "to have" }, | |
| array: { unit: "items", verb: "to have" }, | |
| set: { unit: "items", verb: "to have" }, | |
| }; | |
| function getSizing(origin) { | |
| return Sizable[origin] ?? null; | |
| } | |
| const Nouns = { | |
| regex: "input", | |
| email: "email address", | |
| 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: "ISO datetime", | |
| date: "ISO date", | |
| time: "ISO time", | |
| duration: "ISO duration", | |
| ipv4: "IPv4 address", | |
| ipv6: "IPv6 address", | |
| cidrv4: "IPv4 range", | |
| cidrv6: "IPv6 range", | |
| base64: "base64-encoded string", | |
| base64url: "base64url-encoded string", | |
| json_string: "JSON string", | |
| e164: "E.164 number", | |
| jwt: "JWT", | |
| template_literal: "input", | |
| }; | |
| return (issue) => { | |
| switch (issue.code) { | |
| case "invalid_type": | |
| return `Invalid input: expected ${issue.expected}, received ${(0, exports.parsedType)(issue.input)}`; | |
| case "invalid_value": | |
| if (issue.values.length === 1) | |
| return `Invalid input: expected ${util.stringifyPrimitive(issue.values[0])}`; | |
| return `Invalid option: expected one of ${util.joinValues(issue.values, "|")}`; | |
| case "too_big": { | |
| const adj = issue.inclusive ? "<=" : "<"; | |
| const sizing = getSizing(issue.origin); | |
| if (sizing) | |
| return `Too big: expected ${issue.origin ?? "value"} to have ${adj}${issue.maximum.toString()} ${sizing.unit ?? "elements"}`; | |
| return `Too big: expected ${issue.origin ?? "value"} to be ${adj}${issue.maximum.toString()}`; | |
| } | |
| case "too_small": { | |
| const adj = issue.inclusive ? ">=" : ">"; | |
| const sizing = getSizing(issue.origin); | |
| if (sizing) { | |
| return `Too small: expected ${issue.origin} to have ${adj}${issue.minimum.toString()} ${sizing.unit}`; | |
| } | |
| return `Too small: expected ${issue.origin} to be ${adj}${issue.minimum.toString()}`; | |
| } | |
| case "invalid_format": { | |
| const _issue = issue; | |
| if (_issue.format === "starts_with") { | |
| return `Invalid string: must start with "${_issue.prefix}"`; | |
| } | |
| if (_issue.format === "ends_with") | |
| return `Invalid string: must end with "${_issue.suffix}"`; | |
| if (_issue.format === "includes") | |
| return `Invalid string: must include "${_issue.includes}"`; | |
| if (_issue.format === "regex") | |
| return `Invalid string: must match pattern ${_issue.pattern}`; | |
| return `Invalid ${Nouns[_issue.format] ?? issue.format}`; | |
| } | |
| case "not_multiple_of": | |
| return `Invalid number: must be a multiple of ${issue.divisor}`; | |
| case "unrecognized_keys": | |
| return `Unrecognized key${issue.keys.length > 1 ? "s" : ""}: ${util.joinValues(issue.keys, ", ")}`; | |
| case "invalid_key": | |
| return `Invalid key in ${issue.origin}`; | |
| case "invalid_union": | |
| return "Invalid input"; | |
| case "invalid_element": | |
| return `Invalid value in ${issue.origin}`; | |
| default: | |
| return `Invalid input`; | |
| } | |
| }; | |
| }; | |
| function default_1() { | |
| return { | |
| localeError: error(), | |
| }; | |
| } | |
Xet Storage Details
- Size:
- 5.68 kB
- Xet hash:
- 1ed93d77eb85bf5896787d0f9cb4ae0820e043d2e876bad540d79c9f1d7f239a
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.