Comparing version 2.0.0-beta.27 to 2.0.0-beta.28
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var z = __importStar(require(".")); | ||
var callback = function (predicate) { | ||
return predicate('hello'); | ||
}; | ||
console.log(callback(z.string().check)); | ||
console.log(callback(function (value) { return z.string().check(value); })); | ||
//# sourceMappingURL=playground.js.map |
@@ -243,2 +243,6 @@ "use strict"; | ||
this._def = def; | ||
this.is = this.is.bind(this); | ||
this.check = this.check.bind(this); | ||
this.transform = this.transform.bind(this); | ||
this.default = this.default.bind(this); | ||
} | ||
@@ -245,0 +249,0 @@ ZodType.prototype.is = function (u) { |
{ | ||
"name": "zod", | ||
"version": "2.0.0-beta.27", | ||
"version": "2.0.0-beta.28", | ||
"description": "TypeScript-first schema declaration and validation library with static type inference", | ||
@@ -5,0 +5,0 @@ "main": "./lib/cjs/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
691368
10059