MCPcopy
hub / github.com/stemkoski/stemkoski.github.com / isFunction

Function isFunction

MathBox/mathbox-bundle.js:37524–37526  ·  view source on GitHub ↗

* Checks if `value` is a function. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check. * @returns {boolean} Returns `true` if the `value` is a function, else `false`. * @example * * _.isFunction(_); * // => true

(value)

Source from the content-addressed store, hash-verified

37522 * // => true
37523 */
37524 function isFunction(value) {
37525 return typeof value == 'function';
37526 }
37527
37528 /**
37529 * Checks if `value` is the language type of Object.

Callers 15

baseIsEqualFunction · 0.70
createWrapperFunction · 0.70
shimIsPlainObjectFunction · 0.70
functionsFunction · 0.70
isEmptyFunction · 0.70
afterFunction · 0.70
composeFunction · 0.70
debounceFunction · 0.70
deferFunction · 0.70
delayFunction · 0.70
memoizeFunction · 0.70
onceFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected