(element, classString)
| 126 | * with ' ' as separator. |
| 127 | */ |
| 128 | export const remove = (element, classString) => |
| 129 | untrackClass( |
| 130 | element.classList, |
| 131 | element.nodeName.toLowerCase() == "html" ? htmlClassList : docBodyClassList, |
| 132 | classString.split(" ") |
| 133 | ); |
nothing calls this directly
no test coverage detected