From 26fa49f4b0aa658d65a21fffe828f39e78302573 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 17:46:58 +0800 Subject: [PATCH] Revert "Update#139889 [ 快速篩選 ] 年資文案調整" --- PAMapp/node_modules/core-js/modules/esnext.weak-set.add-all.js | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-) diff --git a/PAMapp/node_modules/core-js/modules/esnext.weak-set.add-all.js b/PAMapp/node_modules/core-js/modules/esnext.weak-set.add-all.js index e8bb4c9..338763b 100644 --- a/PAMapp/node_modules/core-js/modules/esnext.weak-set.add-all.js +++ b/PAMapp/node_modules/core-js/modules/esnext.weak-set.add-all.js @@ -1,12 +1,9 @@ 'use strict'; var $ = require('../internals/export'); -var IS_PURE = require('../internals/is-pure'); -var collectionAddAll = require('../internals/collection-add-all'); +var addAll = require('../internals/collection-add-all'); // `WeakSet.prototype.addAll` method // https://github.com/tc39/proposal-collection-methods -$({ target: 'WeakSet', proto: true, real: true, forced: IS_PURE }, { - addAll: function addAll(/* ...elements */) { - return collectionAddAll.apply(this, arguments); - } +$({ target: 'WeakSet', proto: true, real: true, forced: true }, { + addAll: addAll }); -- Gitblit v1.8.0