Procházet zdrojové kódy

refactor(reactive): reduce code size by assigning to a local variable (#1634)

Zardddddd60 před 5 roky
rodič
revize
3e412c10e0
1 změnil soubory, kde provedl 6 přidání a 11 odebrání
  1. 6 11
      packages/reactivity/src/reactive.ts

+ 6 - 11
packages/reactivity/src/reactive.ts

@@ -141,12 +141,11 @@ function createReactiveObject(
     return target
   }
   // target already has corresponding Proxy
-  if (
-    hasOwn(target, isReadonly ? ReactiveFlags.READONLY : ReactiveFlags.REACTIVE)
-  ) {
-    return isReadonly
-      ? target[ReactiveFlags.READONLY]
-      : target[ReactiveFlags.REACTIVE]
+  const reactiveFlag = isReadonly
+    ? ReactiveFlags.READONLY
+    : ReactiveFlags.REACTIVE
+  if (hasOwn(target, reactiveFlag)) {
+    return target[reactiveFlag]
   }
   // only a whitelist of value types can be observed.
   if (!canObserve(target)) {
@@ -156,11 +155,7 @@ function createReactiveObject(
     target,
     collectionTypes.has(target.constructor) ? collectionHandlers : baseHandlers
   )
-  def(
-    target,
-    isReadonly ? ReactiveFlags.READONLY : ReactiveFlags.REACTIVE,
-    observed
-  )
+  def(target, reactiveFlag, observed)
   return observed
 }