UNPKG

types-json

Version:
8 lines (7 loc) 180 B
import { validate } from "is-zod"; export const is = validate; export function parse(schema) { return (value)=>{ return is(schema)(value) ? value : undefined; }; }