(name, value, priority)
| 2155 | } |
| 2156 | |
| 2157 | function selection_style(name, value, priority) { |
| 2158 | return arguments.length > 1 |
| 2159 | ? this.each((value == null |
| 2160 | ? styleRemove$1 : typeof value === "function" |
| 2161 | ? styleFunction$1 |
| 2162 | : styleConstant$1)(name, value, priority == null ? "" : priority)) |
| 2163 | : styleValue(this.node(), name); |
| 2164 | } |
| 2165 | |
| 2166 | function styleValue(node, name) { |
| 2167 | return node.style.getPropertyValue(name) |
nothing calls this directly
no test coverage detected