From 90e6cb94e9c9a4d055a0983c9c7386daa48f61f9 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:45:03 +0800 Subject: [PATCH] TODO#139893 [ FAQ 常見問題 -我進行預約後,顧問會用甚麼方式聯繫我? ] 文案調整 --- PAMapp/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/PAMapp/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs b/PAMapp/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs index ed43846..7bc7102 100644 --- a/PAMapp/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs +++ b/PAMapp/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs @@ -344,7 +344,7 @@ missingDependencies = {} } = options; if (missingDependencies === false) return false; - const caller = babelApi.caller(caller => caller?.name); + const caller = babelApi.caller(caller => caller == null ? void 0 : caller.name); const { log = "deferred", inject = caller === "rollup-plugin-babel" ? "throw" : "import", @@ -586,7 +586,7 @@ method, methodName, targets, - absoluteImports: absoluteImports ?? false, + absoluteImports: absoluteImports != null ? absoluteImports : false, shouldInjectPolyfill, debug: !!debug, providerOptions: providerOptions @@ -735,6 +735,8 @@ visitor, pre() { + var _provider$pre; + debugLog = { polyfills: new Map(), found: false, @@ -742,12 +744,14 @@ missingDeps: new Set() }; // $FlowIgnore - Flow doesn't support optional calls - provider.pre?.apply(this, arguments); + (_provider$pre = provider.pre) == null ? void 0 : _provider$pre.apply(this, arguments); }, post() { + var _provider$post; + // $FlowIgnore - Flow doesn't support optional calls - provider.post?.apply(this, arguments); + (_provider$post = provider.post) == null ? void 0 : _provider$post.apply(this, arguments); if (missingDependencies !== false) { if (missingDependencies.log === "per-file") { -- Gitblit v1.8.0