Viewing File: /home/ubuntu/route-and-root-frontend-base/node_modules/min-document/test/cleanup.js

module.exports = Cleanup

function Cleanup (document) {

    return cleanup

    function cleanup () {
        var childNodes = document.body.childNodes
        for (var i = 0; i < childNodes.length; i++) {
            document.body.removeChild(childNodes[i])
        }
    }
}
Back to Directory File Manager