aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/es/instance
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/es/instance')
-rw-r--r--node_modules/core-js/es/instance/bind.js8
-rw-r--r--node_modules/core-js/es/instance/code-point-at.js9
-rw-r--r--node_modules/core-js/es/instance/concat.js8
-rw-r--r--node_modules/core-js/es/instance/copy-within.js8
-rw-r--r--node_modules/core-js/es/instance/ends-with.js9
-rw-r--r--node_modules/core-js/es/instance/entries.js8
-rw-r--r--node_modules/core-js/es/instance/every.js8
-rw-r--r--node_modules/core-js/es/instance/fill.js8
-rw-r--r--node_modules/core-js/es/instance/filter.js8
-rw-r--r--node_modules/core-js/es/instance/find-index.js8
-rw-r--r--node_modules/core-js/es/instance/find.js8
-rw-r--r--node_modules/core-js/es/instance/flags.js7
-rw-r--r--node_modules/core-js/es/instance/flat-map.js8
-rw-r--r--node_modules/core-js/es/instance/flat.js8
-rw-r--r--node_modules/core-js/es/instance/for-each.js8
-rw-r--r--node_modules/core-js/es/instance/includes.js13
-rw-r--r--node_modules/core-js/es/instance/index-of.js8
-rw-r--r--node_modules/core-js/es/instance/keys.js8
-rw-r--r--node_modules/core-js/es/instance/last-index-of.js8
-rw-r--r--node_modules/core-js/es/instance/map.js8
-rw-r--r--node_modules/core-js/es/instance/match-all.js9
-rw-r--r--node_modules/core-js/es/instance/pad-end.js9
-rw-r--r--node_modules/core-js/es/instance/pad-start.js9
-rw-r--r--node_modules/core-js/es/instance/reduce-right.js8
-rw-r--r--node_modules/core-js/es/instance/reduce.js8
-rw-r--r--node_modules/core-js/es/instance/repeat.js9
-rw-r--r--node_modules/core-js/es/instance/replace-all.js9
-rw-r--r--node_modules/core-js/es/instance/reverse.js8
-rw-r--r--node_modules/core-js/es/instance/slice.js8
-rw-r--r--node_modules/core-js/es/instance/some.js8
-rw-r--r--node_modules/core-js/es/instance/sort.js8
-rw-r--r--node_modules/core-js/es/instance/splice.js8
-rw-r--r--node_modules/core-js/es/instance/starts-with.js9
-rw-r--r--node_modules/core-js/es/instance/trim-end.js9
-rw-r--r--node_modules/core-js/es/instance/trim-left.js9
-rw-r--r--node_modules/core-js/es/instance/trim-right.js9
-rw-r--r--node_modules/core-js/es/instance/trim-start.js9
-rw-r--r--node_modules/core-js/es/instance/trim.js9
-rw-r--r--node_modules/core-js/es/instance/values.js8
39 files changed, 0 insertions, 329 deletions
diff --git a/node_modules/core-js/es/instance/bind.js b/node_modules/core-js/es/instance/bind.js
deleted file mode 100644
index 11f932a..0000000
--- a/node_modules/core-js/es/instance/bind.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var bind = require('../function/virtual/bind');
-
-var FunctionPrototype = Function.prototype;
-
-module.exports = function (it) {
- var own = it.bind;
- return it === FunctionPrototype || (it instanceof Function && own === FunctionPrototype.bind) ? bind : own;
-};
diff --git a/node_modules/core-js/es/instance/code-point-at.js b/node_modules/core-js/es/instance/code-point-at.js
deleted file mode 100644
index c4eaa42..0000000
--- a/node_modules/core-js/es/instance/code-point-at.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var codePointAt = require('../string/virtual/code-point-at');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.codePointAt;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.codePointAt) ? codePointAt : own;
-};
diff --git a/node_modules/core-js/es/instance/concat.js b/node_modules/core-js/es/instance/concat.js
deleted file mode 100644
index 87b7413..0000000
--- a/node_modules/core-js/es/instance/concat.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var concat = require('../array/virtual/concat');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.concat;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.concat) ? concat : own;
-};
diff --git a/node_modules/core-js/es/instance/copy-within.js b/node_modules/core-js/es/instance/copy-within.js
deleted file mode 100644
index c59f52d..0000000
--- a/node_modules/core-js/es/instance/copy-within.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var copyWithin = require('../array/virtual/copy-within');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.copyWithin;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.copyWithin) ? copyWithin : own;
-};
diff --git a/node_modules/core-js/es/instance/ends-with.js b/node_modules/core-js/es/instance/ends-with.js
deleted file mode 100644
index 532d6f7..0000000
--- a/node_modules/core-js/es/instance/ends-with.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var endsWith = require('../string/virtual/ends-with');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.endsWith;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.endsWith) ? endsWith : own;
-};
diff --git a/node_modules/core-js/es/instance/entries.js b/node_modules/core-js/es/instance/entries.js
deleted file mode 100644
index 8aedc41..0000000
--- a/node_modules/core-js/es/instance/entries.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var entries = require('../array/virtual/entries');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.entries;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.entries) ? entries : own;
-};
diff --git a/node_modules/core-js/es/instance/every.js b/node_modules/core-js/es/instance/every.js
deleted file mode 100644
index 1faaccb..0000000
--- a/node_modules/core-js/es/instance/every.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var every = require('../array/virtual/every');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.every;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.every) ? every : own;
-};
diff --git a/node_modules/core-js/es/instance/fill.js b/node_modules/core-js/es/instance/fill.js
deleted file mode 100644
index 5d0f22b..0000000
--- a/node_modules/core-js/es/instance/fill.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var fill = require('../array/virtual/fill');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.fill;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.fill) ? fill : own;
-};
diff --git a/node_modules/core-js/es/instance/filter.js b/node_modules/core-js/es/instance/filter.js
deleted file mode 100644
index 8ba32b6..0000000
--- a/node_modules/core-js/es/instance/filter.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var filter = require('../array/virtual/filter');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.filter;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.filter) ? filter : own;
-};
diff --git a/node_modules/core-js/es/instance/find-index.js b/node_modules/core-js/es/instance/find-index.js
deleted file mode 100644
index 27a0583..0000000
--- a/node_modules/core-js/es/instance/find-index.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var findIndex = require('../array/virtual/find-index');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.findIndex;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.findIndex) ? findIndex : own;
-};
diff --git a/node_modules/core-js/es/instance/find.js b/node_modules/core-js/es/instance/find.js
deleted file mode 100644
index 70443c7..0000000
--- a/node_modules/core-js/es/instance/find.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var find = require('../array/virtual/find');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.find;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.find) ? find : own;
-};
diff --git a/node_modules/core-js/es/instance/flags.js b/node_modules/core-js/es/instance/flags.js
deleted file mode 100644
index f0b9114..0000000
--- a/node_modules/core-js/es/instance/flags.js
+++ /dev/null
@@ -1,7 +0,0 @@
-var flags = require('../regexp/flags');
-
-var RegExpPrototype = RegExp.prototype;
-
-module.exports = function (it) {
- return (it === RegExpPrototype || it instanceof RegExp) && !('flags' in it) ? flags(it) : it.flags;
-};
diff --git a/node_modules/core-js/es/instance/flat-map.js b/node_modules/core-js/es/instance/flat-map.js
deleted file mode 100644
index eca5a41..0000000
--- a/node_modules/core-js/es/instance/flat-map.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var flatMap = require('../array/virtual/flat-map');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.flatMap;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.flatMap) ? flatMap : own;
-};
diff --git a/node_modules/core-js/es/instance/flat.js b/node_modules/core-js/es/instance/flat.js
deleted file mode 100644
index 186a729..0000000
--- a/node_modules/core-js/es/instance/flat.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var flat = require('../array/virtual/flat');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.flat;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.flat) ? flat : own;
-};
diff --git a/node_modules/core-js/es/instance/for-each.js b/node_modules/core-js/es/instance/for-each.js
deleted file mode 100644
index 3a2e6a9..0000000
--- a/node_modules/core-js/es/instance/for-each.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var forEach = require('../array/virtual/for-each');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.forEach;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.forEach) ? forEach : own;
-};
diff --git a/node_modules/core-js/es/instance/includes.js b/node_modules/core-js/es/instance/includes.js
deleted file mode 100644
index d282373..0000000
--- a/node_modules/core-js/es/instance/includes.js
+++ /dev/null
@@ -1,13 +0,0 @@
-var arrayIncludes = require('../array/virtual/includes');
-var stringIncludes = require('../string/virtual/includes');
-
-var ArrayPrototype = Array.prototype;
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.includes;
- if (it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.includes)) return arrayIncludes;
- if (typeof it === 'string' || it === StringPrototype || (it instanceof String && own === StringPrototype.includes)) {
- return stringIncludes;
- } return own;
-};
diff --git a/node_modules/core-js/es/instance/index-of.js b/node_modules/core-js/es/instance/index-of.js
deleted file mode 100644
index a5fa42a..0000000
--- a/node_modules/core-js/es/instance/index-of.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var indexOf = require('../array/virtual/index-of');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.indexOf;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.indexOf) ? indexOf : own;
-};
diff --git a/node_modules/core-js/es/instance/keys.js b/node_modules/core-js/es/instance/keys.js
deleted file mode 100644
index 0e2dca2..0000000
--- a/node_modules/core-js/es/instance/keys.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var keys = require('../array/virtual/keys');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.keys;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.keys) ? keys : own;
-};
diff --git a/node_modules/core-js/es/instance/last-index-of.js b/node_modules/core-js/es/instance/last-index-of.js
deleted file mode 100644
index 729bc65..0000000
--- a/node_modules/core-js/es/instance/last-index-of.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var lastIndexOf = require('../array/virtual/last-index-of');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.lastIndexOf;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.lastIndexOf) ? lastIndexOf : own;
-};
diff --git a/node_modules/core-js/es/instance/map.js b/node_modules/core-js/es/instance/map.js
deleted file mode 100644
index 4d2d17f..0000000
--- a/node_modules/core-js/es/instance/map.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var map = require('../array/virtual/map');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.map;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.map) ? map : own;
-};
diff --git a/node_modules/core-js/es/instance/match-all.js b/node_modules/core-js/es/instance/match-all.js
deleted file mode 100644
index 2ab56b1..0000000
--- a/node_modules/core-js/es/instance/match-all.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var matchAll = require('../string/virtual/match-all');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.matchAll;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.matchAll) ? matchAll : own;
-};
diff --git a/node_modules/core-js/es/instance/pad-end.js b/node_modules/core-js/es/instance/pad-end.js
deleted file mode 100644
index 40ea603..0000000
--- a/node_modules/core-js/es/instance/pad-end.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var padEnd = require('../string/virtual/pad-end');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.padEnd;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.padEnd) ? padEnd : own;
-};
diff --git a/node_modules/core-js/es/instance/pad-start.js b/node_modules/core-js/es/instance/pad-start.js
deleted file mode 100644
index 1e3220c..0000000
--- a/node_modules/core-js/es/instance/pad-start.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var padStart = require('../string/virtual/pad-start');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.padStart;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.padStart) ? padStart : own;
-};
diff --git a/node_modules/core-js/es/instance/reduce-right.js b/node_modules/core-js/es/instance/reduce-right.js
deleted file mode 100644
index 6a8802f..0000000
--- a/node_modules/core-js/es/instance/reduce-right.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var reduceRight = require('../array/virtual/reduce-right');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.reduceRight;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduceRight) ? reduceRight : own;
-};
diff --git a/node_modules/core-js/es/instance/reduce.js b/node_modules/core-js/es/instance/reduce.js
deleted file mode 100644
index efa46a9..0000000
--- a/node_modules/core-js/es/instance/reduce.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var reduce = require('../array/virtual/reduce');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.reduce;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduce) ? reduce : own;
-};
diff --git a/node_modules/core-js/es/instance/repeat.js b/node_modules/core-js/es/instance/repeat.js
deleted file mode 100644
index d4c05ad..0000000
--- a/node_modules/core-js/es/instance/repeat.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var repeat = require('../string/virtual/repeat');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.repeat;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.repeat) ? repeat : own;
-};
diff --git a/node_modules/core-js/es/instance/replace-all.js b/node_modules/core-js/es/instance/replace-all.js
deleted file mode 100644
index d920a60..0000000
--- a/node_modules/core-js/es/instance/replace-all.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var replaceAll = require('../string/virtual/replace-all');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.replaceAll;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.replaceAll) ? replaceAll : own;
-};
diff --git a/node_modules/core-js/es/instance/reverse.js b/node_modules/core-js/es/instance/reverse.js
deleted file mode 100644
index ca4bfea..0000000
--- a/node_modules/core-js/es/instance/reverse.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var reverse = require('../array/virtual/reverse');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.reverse;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reverse) ? reverse : own;
-};
diff --git a/node_modules/core-js/es/instance/slice.js b/node_modules/core-js/es/instance/slice.js
deleted file mode 100644
index 03ef7a7..0000000
--- a/node_modules/core-js/es/instance/slice.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var slice = require('../array/virtual/slice');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.slice;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.slice) ? slice : own;
-};
diff --git a/node_modules/core-js/es/instance/some.js b/node_modules/core-js/es/instance/some.js
deleted file mode 100644
index 562c11e..0000000
--- a/node_modules/core-js/es/instance/some.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var some = require('../array/virtual/some');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.some;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.some) ? some : own;
-};
diff --git a/node_modules/core-js/es/instance/sort.js b/node_modules/core-js/es/instance/sort.js
deleted file mode 100644
index 96edb80..0000000
--- a/node_modules/core-js/es/instance/sort.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var sort = require('../array/virtual/sort');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.sort;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.sort) ? sort : own;
-};
diff --git a/node_modules/core-js/es/instance/splice.js b/node_modules/core-js/es/instance/splice.js
deleted file mode 100644
index 5b907f4..0000000
--- a/node_modules/core-js/es/instance/splice.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var splice = require('../array/virtual/splice');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.splice;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.splice) ? splice : own;
-};
diff --git a/node_modules/core-js/es/instance/starts-with.js b/node_modules/core-js/es/instance/starts-with.js
deleted file mode 100644
index 99a01a7..0000000
--- a/node_modules/core-js/es/instance/starts-with.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var startsWith = require('../string/virtual/starts-with');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.startsWith;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.startsWith) ? startsWith : own;
-};
diff --git a/node_modules/core-js/es/instance/trim-end.js b/node_modules/core-js/es/instance/trim-end.js
deleted file mode 100644
index c004cba..0000000
--- a/node_modules/core-js/es/instance/trim-end.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var trimEnd = require('../string/virtual/trim-end');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.trimEnd;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.trimEnd) ? trimEnd : own;
-};
diff --git a/node_modules/core-js/es/instance/trim-left.js b/node_modules/core-js/es/instance/trim-left.js
deleted file mode 100644
index fc5c309..0000000
--- a/node_modules/core-js/es/instance/trim-left.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var trimLeft = require('../string/virtual/trim-left');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.trimLeft;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.trimLeft) ? trimLeft : own;
-};
diff --git a/node_modules/core-js/es/instance/trim-right.js b/node_modules/core-js/es/instance/trim-right.js
deleted file mode 100644
index ef38eff..0000000
--- a/node_modules/core-js/es/instance/trim-right.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var trimRight = require('../string/virtual/trim-right');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.trimRight;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.trimRight) ? trimRight : own;
-};
diff --git a/node_modules/core-js/es/instance/trim-start.js b/node_modules/core-js/es/instance/trim-start.js
deleted file mode 100644
index 74a89bd..0000000
--- a/node_modules/core-js/es/instance/trim-start.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var trimStart = require('../string/virtual/trim-start');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.trimStart;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.trimStart) ? trimStart : own;
-};
diff --git a/node_modules/core-js/es/instance/trim.js b/node_modules/core-js/es/instance/trim.js
deleted file mode 100644
index cdd3ed9..0000000
--- a/node_modules/core-js/es/instance/trim.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var trim = require('../string/virtual/trim');
-
-var StringPrototype = String.prototype;
-
-module.exports = function (it) {
- var own = it.trim;
- return typeof it === 'string' || it === StringPrototype
- || (it instanceof String && own === StringPrototype.trim) ? trim : own;
-};
diff --git a/node_modules/core-js/es/instance/values.js b/node_modules/core-js/es/instance/values.js
deleted file mode 100644
index 52c76df..0000000
--- a/node_modules/core-js/es/instance/values.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var values = require('../array/virtual/values');
-
-var ArrayPrototype = Array.prototype;
-
-module.exports = function (it) {
- var own = it.values;
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.values) ? values : own;
-};