(name)
| 584 | } |
| 585 | |
| 586 | function selectedSourceValues(name) { |
| 587 | return [...document.querySelectorAll(`input[name="${name}"]:checked`)] |
| 588 | .map((input) => input.value) |
| 589 | .filter(Boolean); |
| 590 | } |
| 591 | |
| 592 | function collectDailyOptions() { |
| 593 | return { |
no outgoing calls
no test coverage detected