()
| 9 | |
| 10 | /* istanbul ignore next */ |
| 11 | export function resetState() { |
| 12 | const htmlElement = document.getElementsByTagName("html")[0]; |
| 13 | for (let cls in htmlClassList) { |
| 14 | removeClass(htmlElement, htmlClassList[cls]); |
| 15 | } |
| 16 | |
| 17 | const body = document.body; |
| 18 | for (let cls in docBodyClassList) { |
| 19 | removeClass(body, docBodyClassList[cls]); |
| 20 | } |
| 21 | |
| 22 | htmlClassList = {}; |
| 23 | docBodyClassList = {}; |
| 24 | } |
| 25 | |
| 26 | /* istanbul ignore next */ |
| 27 | export function log() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…