From 6cc09d6ef21c14ba2dce5af1f5fe716540d77f6f Mon Sep 17 00:00:00 2001 From: guy Date: Mon, 23 Nov 2020 10:32:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=B8=80=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/fix/worker.compact.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/fix/worker.compact.js b/dist/fix/worker.compact.js index 9ec571f28..63cfbe759 100644 --- a/dist/fix/worker.compact.js +++ b/dist/fix/worker.compact.js @@ -78,7 +78,7 @@ }); var store = {}; this.store = new Proxy(store, { - get (target, key) { + get: function (target, key) { return function () { WORKER.postMessage({ type: modelType, @@ -89,7 +89,7 @@ }); }; }, - set (target, key, value) { + set: function (target, key, value) { return Reflect.set(target, key, value); } });