Lines Matching refs:srcValue
5436 arguments: *(objValue, srcValue, index|key, object, source)*.
5455 function customizer(objValue, srcValue) {
5456 if (isGreeting(objValue) && isGreeting(srcValue)) {
7041 is invoked with five arguments: *(objValue, srcValue, key, object, source)*.
7062 function customizer(objValue, srcValue) {
7063 return _.isUndefined(objValue) ? srcValue : objValue;
7083 is invoked with five arguments: *(objValue, srcValue, key, object, source)*.
7101 function customizer(objValue, srcValue) {
7102 return _.isUndefined(objValue) ? srcValue : objValue;
7955 *(objValue, srcValue, key, object, source, stack)*.
7973 function customizer(objValue, srcValue) {
7975 return objValue.concat(srcValue);
10468 <h3 id="_matchespropertypath-srcvalue"><code>_.matchesProperty(path, srcValue)</code></h3>
10472 value at `path` of a given object to `srcValue`, returning `true` if the
10477 `srcValue` values against any array or object value, respectively. See
10485 2. `srcValue` *(*)*: The value to match.