mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
21 lines
808 B
JavaScript
Generated
21 lines
808 B
JavaScript
Generated
'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);
|
|
};
|