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

Function multipleOf

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

Source from the content-addressed store, hash-verified

1040 return this.check(checks.lte(0, params));
1041 },
1042 multipleOf(value, params) {
1043 return this.check(checks.multipleOf(value, params));
1044 },
1045 step(value, params) {
1046 return this.check(checks.multipleOf(value, params));
1047 },

Callers

nothing calls this directly

Calls 2

checkMethod · 0.65
multipleOfMethod · 0.65

Tested by

no test coverage detected