(node, key)
| 7949 | exports.default = removeStyle; |
| 7950 | |
| 7951 | function removeStyle(node, key) { |
| 7952 | return 'removeProperty' in node.style ? node.style.removeProperty(key) : node.style.removeAttribute(key); |
| 7953 | } |
| 7954 | |
| 7955 | module.exports = exports["default"]; |
| 7956 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…