* Creates an array of function property names from own and inherited * enumerable properties of `object`. * * @static * @memberOf _ * @since 4.0.0 * @category Object * @param {Object} object The object to inspect. * @returns {Array} Returns the function names.
(object)
| 13194 | * // => ['a', 'b', 'c'] |
| 13195 | */ |
| 13196 | function functionsIn(object) { |
| 13197 | return object == null ? [] : baseFunctions(object, keysIn(object)); |
| 13198 | } |
| 13199 | |
| 13200 | /** |
| 13201 | * Gets the value at `path` of `object`. If the resolved value is |
nothing calls this directly
no test coverage detected