* Returns a randomly chosen value or `null` if not applicable. * @override * @param {Random} random Random number generator * @return {mixed} Randomly chosen value
(random)
| 322 | * @return {mixed} Randomly chosen value |
| 323 | */ |
| 324 | randomizeValue (random) { |
| 325 | return this.randomizeValueWithCallback(random) |
| 326 | } |
| 327 | |
| 328 | /** |
| 329 | * Returns a randomly chosen value using the custom randomize value callback. |
no test coverage detected