MCPcopy Create free account
hub / github.com/RubyLouvre/anu / keysIn

Function keysIn

test/babel.js:4142–4144  ·  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 {Array} Returns the array

(object)

Source from the content-addressed store, hash-verified

4140 * // => ['a', 'b', 'c'] (iteration order is not guaranteed)
4141 */
4142 function keysIn(object) {
4143 return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
4144 }
4145
4146 module.exports = keysIn;
4147

Callers 3

baseAssignInFunction · 0.85
babel.jsFile · 0.85
toPlainObjectFunction · 0.85

Calls 3

arrayLikeKeysFunction · 0.85
baseKeysInFunction · 0.85
isArrayLikeFunction · 0.70

Tested by

no test coverage detected