You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							808 B
						
					
					
				
			
		
		
	
	
							20 lines
						
					
					
						
							808 B
						
					
					
				'use strict'; | 
						|
 | 
						|
var GetIntrinsic = require('get-intrinsic'); | 
						|
var $TypeError = GetIntrinsic('%TypeError%'); | 
						|
 | 
						|
var GetPrototypeFromConstructor = require('./GetPrototypeFromConstructor'); | 
						|
var IsArray = require('./IsArray'); | 
						|
var ObjectCreate = require('./ObjectCreate'); | 
						|
 | 
						|
// https://ecma-international.org/ecma-262/6.0/#sec-ordinarycreatefromconstructor | 
						|
 | 
						|
module.exports = function OrdinaryCreateFromConstructor(constructor, intrinsicDefaultProto) { | 
						|
	GetIntrinsic(intrinsicDefaultProto); // throws if not a valid intrinsic | 
						|
	var proto = GetPrototypeFromConstructor(constructor, intrinsicDefaultProto); | 
						|
	var slots = arguments.length < 3 ? [] : arguments[2]; | 
						|
	if (!IsArray(slots)) { | 
						|
		throw new $TypeError('Assertion failed: if provided, `internalSlotsList` must be a List'); | 
						|
	} | 
						|
	return ObjectCreate(proto, slots); | 
						|
};
 | 
						|
 |