( minLength: number, maxLength: number, )
| 60 | ) |
| 61 | |
| 62 | const arbitraryValues = ( |
| 63 | minLength: number, |
| 64 | maxLength: number, |
| 65 | ): fc.Arbitrary<Array<unknown>> => |
| 66 | fc.array(arbitraryValue, { minLength, maxLength }) |
| 67 | |
| 68 | // Helper to check if result is a Func |
| 69 | function isFunc(expr: unknown): expr is Func { |
no outgoing calls
no test coverage detected