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

Method gt

packages/zod/src/v3/types.ts:1469–1471  ·  view source on GitHub ↗
(value: number, message?: errorUtil.ErrMessage)

Source from the content-addressed store, hash-verified

1467 min = this.gte;
1468
1469 gt(value: number, message?: errorUtil.ErrMessage) {
1470 return this.setLimit("min", value, false, errorUtil.toString(message));
1471 }
1472
1473 lte(value: number, message?: errorUtil.ErrMessage) {
1474 return this.setLimit("max", value, true, errorUtil.toString(message));

Callers

nothing calls this directly

Calls 2

setLimitMethod · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected