CLAUDE branch

i made have screwed the pooch with this
This commit is contained in:
2025-06-17 07:43:33 -04:00
parent b398f6624c
commit 3c7e9b9eee
13929 changed files with 1551228 additions and 183 deletions

View File

@@ -0,0 +1,18 @@
'use strict';
var GetIntrinsic = require('get-intrinsic');
var callBind = require('call-bind');
var $SyntaxError = require('es-errors/syntax');
var $resolve = GetIntrinsic('%Promise.resolve%', true);
var $PromiseResolve = $resolve && callBind($resolve);
// https://262.ecma-international.org/9.0/#sec-promise-resolve
module.exports = function PromiseResolve(C, x) {
if (!$PromiseResolve) {
throw new $SyntaxError('This environment does not support Promises.');
}
return $PromiseResolve(C, x);
};