Preparing search index...
The search index is not available LDesign 基础库
merge With < TObject , TSource > ( object , source , customizer ) : TObject & TSource
Parameters
object : TObject
source : TSource
customizer : ( ( value , srcValue , key , object , source ) => any )
( value , srcValue , key , object , source ) : any
Parameters
value : any
srcValue : any
key : string
object : any
source : any
Returns any
Returns TObject & TSource Returns object.
Defined in node_modules/.pnpm/@types+lodash@4.14.191/node_modules/@types/lodash/common/object.d.ts:1874
merge With < TObject , TSource1 , TSource2 > ( object , source1 , source2 , customizer ) : TObject & TSource1 & TSource2
Type Parameters
TObject
TSource1
TSource2
Parameters
object : TObject
source1 : TSource1
source2 : TSource2
customizer : ( ( value , srcValue , key , object , source ) => any )
( value , srcValue , key , object , source ) : any
Parameters
value : any
srcValue : any
key : string
object : any
source : any
Returns any
Returns TObject & TSource1 & TSource2
Defined in node_modules/.pnpm/@types+lodash@4.14.191/node_modules/@types/lodash/common/object.d.ts:1878
merge With < TObject , TSource1 , TSource2 , TSource3 > ( object , source1 , source2 , source3 , customizer ) : TObject & TSource1 & TSource2 & TSource3
Type Parameters
TObject
TSource1
TSource2
TSource3
Parameters
object : TObject
source1 : TSource1
source2 : TSource2
source3 : TSource3
customizer : ( ( value , srcValue , key , object , source ) => any )
( value , srcValue , key , object , source ) : any
Parameters
value : any
srcValue : any
key : string
object : any
source : any
Returns any
Returns TObject & TSource1 & TSource2 & TSource3
Defined in node_modules/.pnpm/@types+lodash@4.14.191/node_modules/@types/lodash/common/object.d.ts:1882
merge With < TObject , TSource1 , TSource2 , TSource3 , TSource4 > ( object , source1 , source2 , source3 , source4 , customizer ) : TObject & TSource1 & TSource2 & TSource3 & TSource4
Type Parameters
TObject
TSource1
TSource2
TSource3
TSource4
Parameters
object : TObject
source1 : TSource1
source2 : TSource2
source3 : TSource3
source4 : TSource4
customizer : ( ( value , srcValue , key , object , source ) => any )
( value , srcValue , key , object , source ) : any
Parameters
value : any
srcValue : any
key : string
object : any
source : any
Returns any
Returns TObject & TSource1 & TSource2 & TSource3 & TSource4
Defined in node_modules/.pnpm/@types+lodash@4.14.191/node_modules/@types/lodash/common/object.d.ts:1886
merge With ( object , ... otherArgs ) : any
Parameters
object : any
Rest ... otherArgs : any []
Returns any
Defined in node_modules/.pnpm/@types+lodash@4.14.191/node_modules/@types/lodash/common/object.d.ts:1890
This method is like
_.mergeexcept that it acceptscustomizerwhich is invoked to produce the merged values of the destination and source properties. Ifcustomizerreturnsundefinedmerging is handled by the method instead. Thecustomizeris invoked with seven arguments: (objValue, srcValue, key, object, source, stack).Example