Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 686 Bytes

File metadata and controls

19 lines (14 loc) · 686 Bytes
hide_title true
custom_edit_url
pagination_prev
pagination_next

Home > @rushstack/node-core-library > Objects > MergeWithCustomizer

Objects.MergeWithCustomizer type

Customizer function for use with mergeWith<></>. Return undefined to fall back to the default deep-merge behavior for that property.

Signature:

export type MergeWithCustomizer = (objValue: unknown, srcValue: unknown, key: string) => unknown;