MCPcopy
hub / github.com/lodash/lodash / functions

Function functions

lodash.js:13169–13171  ·  view source on GitHub ↗

* Creates an array of function property names from own enumerable properties * of `object`. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The object to inspect. * @returns {Array} Returns the function names. * @see _

(object)

Source from the content-addressed store, hash-verified

13167 * // => ['a', 'b']
13168 */
13169 function functions(object) {
13170 return object == null ? [] : baseFunctions(object, keys(object));
13171 }
13172
13173 /**
13174 * Creates an array of function property names from own and inherited

Callers

nothing calls this directly

Calls 2

baseFunctionsFunction · 0.85
keysFunction · 0.85

Tested by

no test coverage detected