aboutsummaryrefslogtreecommitdiff
path: root/node_modules/babel-runtime/node_modules/core-js/modules/_species-constructor.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/babel-runtime/node_modules/core-js/modules/_species-constructor.js')
-rw-r--r--node_modules/babel-runtime/node_modules/core-js/modules/_species-constructor.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/node_modules/babel-runtime/node_modules/core-js/modules/_species-constructor.js b/node_modules/babel-runtime/node_modules/core-js/modules/_species-constructor.js
deleted file mode 100644
index 0cb4ffb8f..000000000
--- a/node_modules/babel-runtime/node_modules/core-js/modules/_species-constructor.js
+++ /dev/null
@@ -1,9 +0,0 @@
-// 7.3.20 SpeciesConstructor(O, defaultConstructor)
-var anObject = require('./_an-object');
-var aFunction = require('./_a-function');
-var SPECIES = require('./_wks')('species');
-module.exports = function (O, D) {
- var C = anObject(O).constructor;
- var S;
- return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);
-};