some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / species-constructor.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/core-js/internals/species-constructor.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/core-js/internals/species-constructor.js
deleted file mode 100644 (file)
index 4d8f565..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-var anObject = require('../internals/an-object');
-var aFunction = require('../internals/a-function');
-var wellKnownSymbol = require('../internals/well-known-symbol');
-
-var SPECIES = wellKnownSymbol('species');
-
-// `SpeciesConstructor` abstract operation
-// https://tc39.github.io/ecma262/#sec-speciesconstructor
-module.exports = function (O, defaultConstructor) {
-  var C = anObject(O).constructor;
-  var S;
-  return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);
-};