Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
33 lines
843 B
JavaScript
33 lines
843 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
|
|
var $species = GetIntrinsic('%Symbol.species%', true);
|
|
var $TypeError = require('es-errors/type');
|
|
var isObject = require('es-object-atoms/isObject');
|
|
|
|
var IsConstructor = require('./IsConstructor');
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-speciesconstructor
|
|
|
|
module.exports = function SpeciesConstructor(O, defaultConstructor) {
|
|
if (!isObject(O)) {
|
|
throw new $TypeError('Assertion failed: Type(O) is not Object');
|
|
}
|
|
var C = O.constructor;
|
|
if (typeof C === 'undefined') {
|
|
return defaultConstructor;
|
|
}
|
|
if (!isObject(C)) {
|
|
throw new $TypeError('O.constructor is not an Object');
|
|
}
|
|
var S = $species ? C[$species] : void 0;
|
|
if (S == null) {
|
|
return defaultConstructor;
|
|
}
|
|
if (IsConstructor(S)) {
|
|
return S;
|
|
}
|
|
throw new $TypeError('no constructor found');
|
|
};
|