(property: string, value: string | null)
| 47 | const upDelay = 64 |
| 48 | |
| 49 | function setProperty(property: string, value: string | null) { |
| 50 | document.documentElement.style.setProperty(property, value) |
| 51 | } |
| 52 | |
| 53 | function removeProperty(property: string) { |
| 54 | document.documentElement.style.removeProperty(property) |
no outgoing calls
no test coverage detected