/opt/canhelp/node_modules/@hono/zod-validator/dist
Edit: /opt/canhelp/node_modules/@hono/zod-validator/dist/index.cjs (2185B)
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
zValidator: () => zValidator
});
module.exports = __toCommonJS(src_exports);
var import_validator = require("hono/validator");
var import_zod = require("zod");
var zValidator = (target, schema, hook) => (
// @ts-expect-error not typed well
(0, import_validator.validator)(target, async (value, c) => {
let validatorValue = value;
if (target === "header" && schema instanceof import_zod.ZodObject) {
const schemaKeys = Object.keys(schema.shape);
const caseInsensitiveKeymap = Object.fromEntries(
schemaKeys.map((key) => [key.toLowerCase(), key])
);
validatorValue = Object.fromEntries(
Object.entries(value).map(([key, value2]) => [caseInsensitiveKeymap[key] || key, value2])
);
}
const result = await schema.safeParseAsync(validatorValue);
if (hook) {
const hookResult = await hook({ data: validatorValue, ...result, target }, c);
if (hookResult) {
if (hookResult instanceof Response) {
return hookResult;
}
if ("response" in hookResult) {
return hookResult.response;
}
}
}
if (!result.success) {
return c.json(result, 400);
}
return result.data;
})
);
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
zValidator
});