The type of the objects being copied.
true
if any changes were made to dst
, or false
if not.
Like above, but copies src
into dst[dstKey]
. This is useful if you're unsure if dst[dstKey]
already exists (as the right type of object) or if you don't want to subscribe to dst[dstKey].
Recursively copies properties or array items from
src
todst
. It's designed to work efficiently with reactive proxies created by proxy.dst
with the same constructor as the corresponding object insrc
,copy
will recursively copy properties into the existingdst
object instead of replacing it. This minimizes change notifications for reactive updates.dst
andsrc
.