(id)
| 19 | } |
| 20 | |
| 21 | export function removeCss(id) { |
| 22 | var style = document.querySelector(`[data-id="${id}"]`) |
| 23 | style && style.remove() |
| 24 | } |
| 25 | |
| 26 | export function addJs(code) { |
| 27 | const script = document.createElement("script") |
no outgoing calls
no test coverage detected