Skip to content

Instantly share code, notes, and snippets.

@devxom
Created May 19, 2018 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devxom/451c6338165f4fc4f1974cb580596a26 to your computer and use it in GitHub Desktop.
Save devxom/451c6338165f4fc4f1974cb580596a26 to your computer and use it in GitHub Desktop.
function setText(node, text) {
let c = node.firstChild
if (c && !c.nextSibling && c.nodeType==3)
c.data = text
else
node.textContent = text
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment