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

Function keys

test/babel.js:2869–2871  ·  view source on GitHub ↗

* Creates an array of the own enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. See the * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) * for more details. * * @static * @since 0.1.0 * @memberOf _ * @category Obj

(object)

Source from the content-addressed store, hash-verified

2867 * // => ['0', '1']
2868 */
2869 function keys(object) {
2870 return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);
2871 }
2872
2873 module.exports = keys;
2874

Callers 5

babel.jsFile · 0.85
createFindFunction · 0.85
valuesFunction · 0.85
baseAssignFunction · 0.85
getMatchDataFunction · 0.85

Calls 3

arrayLikeKeysFunction · 0.85
baseKeysFunction · 0.85
isArrayLikeFunction · 0.70

Tested by

no test coverage detected