key = toRaw(key)
hadKey = has.call(target, key)
} else if (__DEV__) {
- checkIdentitiyKeys(target, has, key)
+ checkIdentityKeys(target, has, key)
}
const oldValue = get.call(target, key)
key = toRaw(key)
hadKey = has.call(target, key)
} else if (__DEV__) {
- checkIdentitiyKeys(target, has, key)
+ checkIdentityKeys(target, has, key)
}
const oldValue = get ? get.call(target, key) : undefined
get: createInstrumentationGetter(readonlyInstrumentations)
}
-function checkIdentitiyKeys(
+function checkIdentityKeys(
target: CollectionTypes,
has: (key: unknown) => boolean,
key: unknown