(value, params)
| 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 | }, |
nothing calls this directly
no test coverage detected