⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact e65feb713e0ecae76032dea2192ec048c3f6252a37eff4280130e0058e497434:


const EVENT_ATTR_RE = /^on/

/**
 * True if the event attribute starts with 'on'
 * @param   { String } attribute - event attribute
 * @returns { Boolean }
 */
export default function isEventAttribute(attribute) {
  return EVENT_ATTR_RE.test(attribute)
}