DIR : /home/kozerus/public_html/cropex/node/node_modules/dom-helpers/esm/clear.js

/home/kozerus/public_html/cropex/node/node_modules/dom-helpers/esm

/**
 * Removes all child nodes from a given node.
 * 
 * @param node the node to clear
 */
export default function clear(node) {
  if (node) {
    while (node.firstChild) {
      node.removeChild(node.firstChild);
    }

    return node;
  }

  return null;
}
//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer