UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

10 lines (8 loc) 159 B
// IE8+ // // Snippet from: // http://youmightnotneedjquery.com/#hide function hide(/* Element */ el) { el.style.display = 'none'; } module.exports = hide;