(validness = 0.7, nestingLvl = 1)
| 186 | } |
| 187 | |
| 188 | export function stringOrRandomValue(validness = 0.7, nestingLvl = 1) { |
| 189 | return randomBoolean(validness) ? randomString() : randomValue(nestingLvl); |
| 190 | } |
| 191 | |
| 192 | export function numberOrRandomValue(validness = 0.7, nestingLvl = 1, min?: number, max?: number) { |
| 193 | return randomBoolean(validness) ? randomNumber(min, max) : randomValue(nestingLvl); |
no test coverage detected