Skip to content

Instantly share code, notes, and snippets.

@alexzuza
Created April 1, 2018 14:49
Show Gist options
  • Save alexzuza/d1592f21c732fa26e5a11a52dfc92c2b to your computer and use it in GitHub Desktop.
Save alexzuza/d1592f21c732fa26e5a11a52dfc92c2b to your computer and use it in GitHub Desktop.
IDOM text
function text(value) {
nextNode();
const node = renderDOM('#text');
// update
// checks for text updates
const data = getData(node);
if (data.text !== value) {
data.text = (value);
node.data = value;
}
// end update
return currentNode;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment