()
| 641 | function d3_selection_attr(name, value) { |
| 642 | name = d3.ns.qualify(name); |
| 643 | function attrNull() { |
| 644 | this.removeAttribute(name); |
| 645 | } |
| 646 | function attrNullNS() { |
| 647 | this.removeAttributeNS(name.space, name.local); |
| 648 | } |
nothing calls this directly
no outgoing calls
no test coverage detected