(s, n)
| 473 | var d3_select = function(s, n) { |
| 474 | return n.querySelector(s); |
| 475 | }, d3_selectAll = function(s, n) { |
| 476 | return n.querySelectorAll(s); |
| 477 | }, d3_selectMatcher = d3_documentElement[d3_vendorSymbol(d3_documentElement, "matchesSelector")], d3_selectMatches = function(n, s) { |
| 478 | return d3_selectMatcher.call(n, s); |
| 479 | }; |
| 480 | if (typeof Sizzle === "function") { |
no outgoing calls
no test coverage detected