parse.js 373 B

123456
  1. import * as core from "zod/v4/core";
  2. import { ZodRealError } from "./errors.js";
  3. export const parse = /* @__PURE__ */ core._parse(ZodRealError);
  4. export const parseAsync = /* @__PURE__ */ core._parseAsync(ZodRealError);
  5. export const safeParse = /* @__PURE__ */ core._safeParse(ZodRealError);
  6. export const safeParseAsync = /* @__PURE__ */ core._safeParseAsync(ZodRealError);