* Check if an element is a template tag. * Note if the template appears inside an SVG its tagName * will be in lowercase. * * @param {Element} el
(el)
| 1420 | */ |
| 1421 | |
| 1422 | function isTemplate(el) { |
| 1423 | return el.tagName && el.tagName.toLowerCase() === 'template'; |
| 1424 | } |
| 1425 | |
| 1426 | /** |
| 1427 | * Create an "anchor" for performing dom insertion/removals. |
no outgoing calls
no test coverage detected