MCPcopy
hub / github.com/colinhacks/zod / gte

Function gte

packages/zod/src/v4/classic/schemas.ts:1009–1011  ·  view source on GitHub ↗
(value, params)

Source from the content-addressed store, hash-verified

1007 return this.check(checks.gt(value, params));
1008 },
1009 gte(value, params) {
1010 return this.check(checks.gte(value, params));
1011 },
1012 min(value, params) {
1013 return this.check(checks.gte(value, params));
1014 },

Callers

nothing calls this directly

Calls 2

checkMethod · 0.65
gteMethod · 0.65

Tested by

no test coverage detected