(node, wrapper)
| 2826 | } |
| 2827 | |
| 2828 | function jqLiteWrapNode(node, wrapper) { |
| 2829 | var parent = node.parentNode; |
| 2830 | |
| 2831 | if (parent) { |
| 2832 | parent.replaceChild(wrapper, node); |
| 2833 | } |
| 2834 | |
| 2835 | wrapper.appendChild(node); |
| 2836 | } |
| 2837 | |
| 2838 | |
| 2839 | // IE9-11 has no method "contains" in SVG element and in Node.prototype. Bug #10259. |
no outgoing calls
no test coverage detected