- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
21 lines
801 B
JavaScript
21 lines
801 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var GetPrototypeFromConstructor = require('./GetPrototypeFromConstructor');
|
|
var IsArray = require('./IsArray');
|
|
var ObjectCreate = require('./ObjectCreate');
|
|
|
|
// 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 ObjectCreate(proto, slots);
|
|
};
|