createReactiveObject judge the target is proxyed bug
Version
3.2.20
Reproduction link
Steps to reproduce
let na = { __v_isReactive: true, name: "vue-next", };
console.log(na is
, isReactive(na));
let proxyed = reactive({ na });
console.log(na is
, na);
What is expected?
the first console result is true. the second console result a normal data not proxyed
What is actually happening?
the first console result is true. the second result is a proxyed reactive data
the function createReactiveObject in vue-next/reactivity judge the target is Proxyed can be optimized 。 the result the function isReactive() return should be same in function createReactiveObject judge the target