⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact fcc712fc3cf8ca8197e0b02d245b616aeec38044cee603966e9511c1efdc52c5:


/**
 * Remove any DOM attribute from a node
 * @param   { Object } dom - DOM node we want to update
 * @param   { String } name - name of the property we want to remove
 */
export default function removeAttribute(dom, name) {
  dom.removeAttribute(name)
}