From 31400c6d01617dd37b9721aa1a12eb549b1a4367 Mon Sep 17 00:00:00 2001 From: Denis Pushkarev Date: Mon, 23 Nov 2020 02:17:15 +0700 Subject: [PATCH] fix some typos after rebasing --- packages/core-js-compat/src/data.js | 2 +- tests/compat/tests.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core-js-compat/src/data.js b/packages/core-js-compat/src/data.js index e792d91c930a..c30d045b7c10 100644 --- a/packages/core-js-compat/src/data.js +++ b/packages/core-js-compat/src/data.js @@ -1495,7 +1495,7 @@ const data = { 'esnext.symbol.replace-all': { }, 'esnext.typed-array.at': { - } + }, 'esnext.typed-array.filter-out': { }, 'esnext.weak-map.delete-all': { diff --git a/tests/compat/tests.js b/tests/compat/tests.js index 05507898dd62..0e60dd11e051 100644 --- a/tests/compat/tests.js +++ b/tests/compat/tests.js @@ -1105,7 +1105,7 @@ GLOBAL.tests = { }, 'esnext.array.filter-out': function () { return [].filterOut; - } + }, 'esnext.array.last-index': function () { return [1, 2, 3].lastIndex && Array.prototype[Symbol.unscopables].lastIndex; }, @@ -1448,7 +1448,7 @@ GLOBAL.tests = { }, 'esnext.typed-array.filter-out': function () { return Int8Array.prototype.filterOut; - } + }, 'esnext.weak-map.delete-all': function () { return WeakMap.prototype.deleteAll; },