MCPcopy Create free account
hub / github.com/ARM-software/AVH / removeToInsertLater

Function removeToInsertLater

DoxyGen/Doxygen_Templates/navtree.js:382–393  ·  view source on GitHub ↗
(element)

Source from the content-addressed store, hash-verified

380}
381
382function removeToInsertLater(element) {
383 var parentNode = element.parentNode;
384 var nextSibling = element.nextSibling;
385 parentNode.removeChild(element);
386 return function() {
387 if (nextSibling) {
388 parentNode.insertBefore(element, nextSibling);
389 } else {
390 parentNode.appendChild(element);
391 }
392 };
393}
394
395function getNode(o, po)
396{

Callers 1

getNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected