()
| 55 | } |
| 56 | |
| 57 | export function getInputCards() { |
| 58 | const cards = []; |
| 59 | for (let i = 0; i < game.GAME_STATE.num_cards_per_hand; i++) { |
| 60 | cards.push(document.getElementById(`input-card-${i}`).valueAsNumber); |
| 61 | } |
| 62 | return cards; |
| 63 | } |
| 64 | |
| 65 | /** Updates display of simulation count. */ |
| 66 | export function displayNumSimulationsSoFar() { |
nothing calls this directly
no outgoing calls
no test coverage detected