Created
May 9, 2020 20:57
-
-
Save baranovxyz/d8883128e88492f8a68c5cf775169434 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function traverseDOM(tree) { | |
if (isLeaf(tree)) tree.className = 'leaf'; | |
else for (const leaf of tree.childNodes) traverseDOM(leaf); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment