Skip to content

Instantly share code, notes, and snippets.

@abiodun0
Created April 27, 2017 23:09
Show Gist options
  • Save abiodun0/cdcbe6270057061770b0670659f1d545 to your computer and use it in GitHub Desktop.
Save abiodun0/cdcbe6270057061770b0670659f1d545 to your computer and use it in GitHub Desktop.
simple abstractions over dom
const el = document.createElement.bind(document)
const text = document.createTextNode.bind(document)
const append = (parent, ...children) => {
children.forEach(c => parent.appendChild(c))
return parent
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment