aboutsummaryrefslogtreecommitdiff
path: root/node_modules/min-document/test/cleanup.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/min-document/test/cleanup.js')
-rw-r--r--node_modules/min-document/test/cleanup.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/min-document/test/cleanup.js b/node_modules/min-document/test/cleanup.js
deleted file mode 100644
index d3ae66ab1..000000000
--- a/node_modules/min-document/test/cleanup.js
+++ /dev/null
@@ -1,13 +0,0 @@
-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])
- }
- }
-}