UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

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