Skip to content

Latest commit

 

History

History
86 lines (43 loc) · 1.45 KB

File metadata and controls

86 lines (43 loc) · 1.45 KB
hide_title true
custom_edit_url
pagination_prev
pagination_next

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

Objects namespace

Functions

Function

Description

areDeepEqual(a, b)

Determines if two objects are deeply equal.

isRecord(value)

Returns true if value is a non-null, non-array plain object (i.e. assignable to Record<string, unknown><></>), narrowing the type accordingly.

mergeWith(target, source, customizer)

Recursively merges own enumerable string-keyed properties of source into target<></>, invoking customizer for each property. Mutates and returns target<></>.

Type Aliases

Type Alias

Description

MergeWithCustomizer

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