Skip to content

Commit 075e58a

Browse files
committedSep 23, 2020
fix: changed short comment to long to avoid micro-mutations
1 parent 0228425 commit 075e58a

9 files changed

+9
-9
lines changed
 

‎dist/purify.cjs.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/purify.cjs.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/purify.es.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/purify.es.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/purify.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/purify.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/purify.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/purify.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/purify.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ function createDOMPurify(window = getGlobal()) {
973973
} else if (dirty instanceof Node) {
974974
/* If dirty is a DOM element, append to an empty document to avoid
975975
elements being stripped by the parser */
976-
body = _initDocument('<!-->');
976+
body = _initDocument('<!---->');
977977
importedNode = body.ownerDocument.importNode(dirty, true);
978978
if (importedNode.nodeType === 1 && importedNode.nodeName === 'BODY') {
979979
/* Node is already a body, use as is */

0 commit comments

Comments
 (0)
Please sign in to comment.