()
| 50 | * GAME_STATE.max_card_value] |
| 51 | */ |
| 52 | export function getRandomDigit() { |
| 53 | return Math.floor( |
| 54 | GAME_STATE.min_card_value + Math.random() * GAME_STATE.max_card_value); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Yields a randomly generated array of three elements. Each element |