Lines Matching refs:keys

487    * @param {Function} iteratee The iteratee to transform keys.
1439 var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');
1495 nativeKeys = overArg(Object.keys, Object),
1580 * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`,
2498 * Aggregates elements of `collection` on `accumulator` with keys transformed
2504 * @param {Function} iteratee The iteratee to transform keys.
2525 return object && copyObject(source, keys(source), object);
2682 : (isFlat ? keysIn : keys);
2704 var props = keys(source);
2964 * @param {Function} keysFunc The function to get the keys of `object`.
2976 * @param {Function} keysFunc The function to get the keys of `object`.
2990 return object && baseFor(object, iteratee, keys);
3002 return object && baseForRight(object, iteratee, keys);
3047 * @param {Function} keysFunc The function to get the keys of `object`.
3476 * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.
4452 * @param {Object} [object] The object to query keys on.
5056 collection = keys(collection);
5447 * @param {Function} keysFunc The function to get the keys of a given object.
5852 return baseGetAllKeys(object, keys, getSymbols);
5952 var result = keys(object),
6299 * @param {Object} [object] The object to query keys on.
6509 * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
9056 * Creates an object composed of keys generated from the results of running
9066 * @param {Function} [iteratee=_.identity] The iteratee to transform keys.
9371 * Creates an object composed of keys generated from the results of running
9382 * @param {Function} [iteratee=_.identity] The iteratee to transform keys.
9479 * Creates an object composed of keys generated from the results of running
9489 * @param {Function} [iteratee=_.identity] The iteratee to transform keys.
9772 * Gets `n` random elements at unique keys from `collection` up to the
11149 return source == null || baseConformsTo(object, source, keys(source));
12597 copyObject(source, keys(source), object);
12704 copyObject(source, keys(source), object, customizer);
13071 return object == null ? [] : baseFunctions(object, keys(object));
13193 * Creates an object composed of the inverted keys and values of `object`.
13222 * corresponding inverted value of each inverted key is an array of keys
13282 * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
13300 * _.keys(new Foo);
13303 * _.keys('hi');
13306 function keys(object) {
13339 * same values as `object` and keys generated by running each own enumerable
13369 * Creates an object with the same keys as `object` and values generated
13730 var toPairs = createToPairs(keys);
13929 return object == null ? [] : baseValues(object, keys(object));
14783 importsKeys = keys(imports),
15693 var props = keys(source),
15701 methodNames = baseFunctions(source, keys(source));
16584 lodash.keys = keys;