MCPcopy
hub / github.com/lodash/lodash / functionsIn

Function functionsIn

lodash.js:13196–13198  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

baseFunctionsFunction · 0.85
keysInFunction · 0.85

Tested by

no test coverage detected