(node)
| 11176 | } |
| 11177 | |
| 11178 | function internalGetID(node) { |
| 11179 | // If node is something like a window, document, or text node, none of |
| 11180 | // which support attributes or a .getAttribute method, gracefully return |
| 11181 | // the empty string, as if the attribute were missing. |
| 11182 | return node.getAttribute && node.getAttribute(ATTR_NAME) || ''; |
| 11183 | } |
| 11184 | |
| 11185 | /** |
| 11186 | * Mounts this component and inserts it into the DOM. |
no outgoing calls
no test coverage detected
searching dependent graphs…