blob: 9efe4622fcdb78af6be201eccb793063648e0a00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { z } from "zod"
export function fn<T extends z.ZodType, Result>(schema: T, cb: (input: z.infer<T>) => Result) {
const result = (input: z.infer<T>) => {
const parsed = schema.parse(input)
return cb(parsed)
}
result.force = (input: z.infer<T>) => cb(input)
result.schema = schema
return result
}
|