Skip to content

Instantly share code, notes, and snippets.

@baranovxyz
Created May 9, 2020 20:57
Show Gist options
  • Save baranovxyz/d8883128e88492f8a68c5cf775169434 to your computer and use it in GitHub Desktop.
Save baranovxyz/d8883128e88492f8a68c5cf775169434 to your computer and use it in GitHub Desktop.
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