MCPcopy Create free account
hub / github.com/d35ha/CallObfuscator / removeToInsertLater

Function removeToInsertLater

docs/html/navtree.js:377–388  ·  view source on GitHub ↗
(element)

Source from the content-addressed store, hash-verified

375}
376
377function removeToInsertLater(element) {
378 var parentNode = element.parentNode;
379 var nextSibling = element.nextSibling;
380 parentNode.removeChild(element);
381 return function() {
382 if (nextSibling) {
383 parentNode.insertBefore(element, nextSibling);
384 } else {
385 parentNode.appendChild(element);
386 }
387 };
388}
389
390function getNode(o, po)
391{

Callers 1

getNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected