⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 9c8922ef46a26c142c5b8b8d212783c10c1b810e06a4f69d423e164ba929fc38:


import { T_FUNCTION } from './../../global-variables'
/**
 * Check if passed argument is a function
 * @param   { * } value -
 * @returns { Boolean } -
 */
export default function isFunction(value) {
  return typeof value === T_FUNCTION
}