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.
		
		
		
		
		
			
		
			
				
					
					
						
							21 lines
						
					
					
						
							825 B
						
					
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							825 B
						
					
					
				| 'use strict';
 | |
| 
 | |
| var GetIntrinsic = require('get-intrinsic');
 | |
| var $TypeError = require('es-errors/type');
 | |
| 
 | |
| var GetPrototypeFromConstructor = require('./GetPrototypeFromConstructor');
 | |
| var IsArray = require('./IsArray');
 | |
| var OrdinaryObjectCreate = require('./OrdinaryObjectCreate');
 | |
| 
 | |
| // https://262.ecma-international.org/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 OrdinaryObjectCreate(proto, slots);
 | |
| };
 |