* 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)
| 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. |
no outgoing calls
no test coverage detected