Lines Matching refs:props

990   function baseToPairs(object, props) {  argument
991 return arrayMap(props, function(key) {
1019 function baseValues(object, props) { argument
1020 return arrayMap(props, function(key) {
2684 var props = isArr ? undefined : keysFunc(value);
2685 arrayEach(props || value, function(subValue, key) {
2686 if (props) {
2704 var props = keys(source);
2706 return baseConformsTo(object, source, props);
2718 function baseConformsTo(object, source, props) { argument
2719 var length = props.length;
2725 var key = props[length],
3014 function baseFunctions(object, props) { argument
3015 return arrayFilter(props, function(key) {
4412 function baseZipObject(props, values, assignFunc) { argument
4414 length = props.length,
4420 assignFunc(result, props[index], value);
4760 function copyObject(source, props, object, customizer) { argument
4765 length = props.length;
4768 var key = props[index];
4900 props = keysFunc(object),
4901 length = props.length;
4904 var key = props[fromRight ? length : ++index];
8655 function zipObject(props, values) {
8656 return baseZipObject(props || [], values || [], assignValue);
8674 function zipObjectDeep(props, values) {
8675 return baseZipObject(props || [], values || [], baseSet);
12799 var props = keysIn(source);
12801 var propsLength = props.length;
12804 var key = props[propsIndex];
13585 var props = arrayMap(getAllKeysIn(object), function(prop) {
13589 return basePickBy(object, props, function(value, path) {
15693 var props = keys(source),
15694 methodNames = baseFunctions(source, props);
15697 !(isObject(source) && (methodNames.length || !props.length))) {