UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

13 lines (11 loc) 284 B
// IE8+ // // http://youmightnotneedjquery.com/#has_class function hasClass(el, className) { if (el.classList) { return el.classList.contains(className); } else { return new RegExp('(^| )' + className + '( |$)', 'gi').test(el.className); } } module.exports = hasClass;