Prepare release 1.7.2
Some checks failed
PR Checks / check_pr (push) Has been cancelled

This commit is contained in:
Nick Cipollo
2020-07-20 19:20:24 -04:00
parent 067437b167
commit 1df3b9d90d
465 changed files with 93583 additions and 1 deletions

14
node_modules/min-document/test/index.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
var testDocument = require("./test-document")
var testDomElement = require("./test-dom-element")
var testDomComment = require("./test-dom-comment")
var document = require("../index")
testDocument(document)
testDomElement(document)
testDomComment(document)
if (typeof window !== "undefined" && window.document) {
testDocument(window.document)
testDomElement(window.document)
testDomComment(window.document)
}