( options: TextOptions )
| 1058 | incrementBy: 1, |
| 1059 | decrementBy: 1, |
| 1060 | precision: 2, |
| 1061 | validate: (n) => { |
| 1062 | if (n < opts.min) { |
| 1063 | return Effect.fail(`${n} must be greater than or equal to ${opts.min}`) |
| 1064 | } |
| 1065 | if (n > opts.max) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…