(pool)
| 52 | * Remove every element from its parent and release the pool. |
| 53 | */ |
| 54 | export function drainPool(pool) { |
| 55 | pool.forEach(e => e.parentNode && e.parentNode.removeChild(e)); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Every HTMLElement must be requested inside this function... |
no outgoing calls
no test coverage detected
searching dependent graphs…