mirror of
				https://github.com/musix-org/musix-oss
				synced 2025-11-04 00:29:32 +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);
 | 
						|
};
 |