(validness = 0.7, nestingLvl = 1)
| 182 | } |
| 183 | |
| 184 | export function booleanOrRandomValue(validness = 0.7, nestingLvl = 1) { |
| 185 | return randomBoolean(validness) ? randomBoolean() : randomValue(nestingLvl); |
| 186 | } |
| 187 | |
| 188 | export function stringOrRandomValue(validness = 0.7, nestingLvl = 1) { |
| 189 | return randomBoolean(validness) ? randomString() : randomValue(nestingLvl); |
no test coverage detected