(max = 3, min = 0)
| 230 | } |
| 231 | |
| 232 | export function randomKeys(max = 3, min = 0) { |
| 233 | return multipleOf(randomNumOrStr, max, min); |
| 234 | } |
| 235 | |
| 236 | export function randomDictObject(nestingLvl = 2, maxKeys = 3) { |
| 237 | if (nestingLvl < 0 || !isNumber(nestingLvl)) { |
no test coverage detected