You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 line
278 B

  1. module.exports = Cleanup
  2. function Cleanup (document) {
  3. return cleanup
  4. function cleanup () {
  5. var childNodes = document.body.childNodes
  6. for (var i = 0; i < childNodes.length; i++) {
  7. document.body.removeChild(childNodes[i])
  8. }
  9. }
  10. }