(node, sibling)
| 124448 | return node; |
| 124449 | } // check if two nodes are ordered siblings |
| 124450 | function siblingCheck(node, sibling) { |
| 124451 | return node.parentNode && node.parentNode.childNodes.length > 1 && node.previousSibling != sibling; // treat null/undefined the same |
| 124452 | } // -- Set attributes & styles on SVG elements --- |
| 124453 | let element = null, // temp var for current SVG element |
| 124454 | values = null; // temp var for current values hash |
| 124455 | // Extra configuration for certain mark types |