(maxSteps: number)
| 13 | new AppError('INVALID_ARGS', message); |
| 14 | |
| 15 | export function isValidBatchMaxSteps(maxSteps: number): boolean { |
| 16 | return Number.isInteger(maxSteps) && maxSteps >= 1 && maxSteps <= 1000; |
| 17 | } |
| 18 | |
| 19 | export function assertBatchStepCount( |
| 20 | stepCount: number, |
no outgoing calls
no test coverage detected
searching dependent graphs…