(id)
| 188 | * @returns {HTMLDivElement} |
| 189 | */ |
| 190 | export function setupScratch(id) { |
| 191 | const scratch = document.createElement('div'); |
| 192 | scratch.id = id || 'scratch'; |
| 193 | (document.body || document.documentElement).appendChild(scratch); |
| 194 | return scratch; |
| 195 | } |
| 196 | |
| 197 | let oldOptions = null; |
| 198 | export function clearOptions() { |
no test coverage detected
searching dependent graphs…