⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 1e3827c9207237fb0689f991c0bf15b49ed0d59e4b19cff5b59b7a3a6a4eb32e:


import { RE_BOOL_ATTRS } from './../../global-variables'
/**
 * Check if the passed argument is a boolean attribute
 * @param   { String } value -
 * @returns { Boolean } -
 */
export default function isBoolAttr(value) {
  return RE_BOOL_ATTRS.test(value)
}