mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 16:13:18 +00:00
14 lines
516 B
JavaScript
14 lines
516 B
JavaScript
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);
|
|
};
|