UNPKG

json-schema-to-zod

Version:

Converts JSON schema objects or files into Zod schemas

20 lines (19 loc) 610 B
export function withMessage(schema, key, get) { const value = schema[key]; let r = ""; if (value !== undefined) { const got = get({ value, json: JSON.stringify(value) }); if (got) { const opener = got[0]; const prefix = got.length === 3 ? got[1] : ""; const closer = got.length === 3 ? got[2] : got[1]; r += opener; if (schema.errorMessage?.[key] !== undefined) { r += prefix + JSON.stringify(schema.errorMessage[key]); } r; r += closer; } } return r; }