MCPcopy
hub / github.com/lodash/lodash / keysIn

Function keysIn

lodash.js:13432–13434  ·  view source on GitHub ↗

* Creates an array of the own and inherited enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @since 3.0.0 * @category Object * @param {Object} object The object to query. * @returns

(object)

Source from the content-addressed store, hash-verified

13430 * // => ['a', 'b', 'c'] (iteration order is not guaranteed)
13431 */
13432 function keysIn(object) {
13433 return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
13434 }
13435
13436 /**
13437 * The opposite of `_.mapValues`; this method creates an object with the

Callers 5

baseAssignInFunction · 0.85
toPlainObjectFunction · 0.85
lodash.jsFile · 0.85
functionsInFunction · 0.85
valuesInFunction · 0.85

Calls 3

isArrayLikeFunction · 0.85
arrayLikeKeysFunction · 0.85
baseKeysInFunction · 0.85

Tested by

no test coverage detected