remove console log
This commit is contained in:
parent
f73a305584
commit
2435b2b48c
|
|
@ -26,7 +26,6 @@ export class SecureZodSchemaParser {
|
||||||
* @throws Error if the schema is invalid or contains unsafe patterns
|
* @throws Error if the schema is invalid or contains unsafe patterns
|
||||||
*/
|
*/
|
||||||
static parseZodSchema(schemaString: string): z.ZodTypeAny {
|
static parseZodSchema(schemaString: string): z.ZodTypeAny {
|
||||||
console.log('parseZodSchema = ', schemaString)
|
|
||||||
try {
|
try {
|
||||||
// Remove comments and normalize whitespace
|
// Remove comments and normalize whitespace
|
||||||
const cleanedSchema = this.cleanSchemaString(schemaString)
|
const cleanedSchema = this.cleanSchemaString(schemaString)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue