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

26
frontend/node_modules/es-abstract/2025/SetDataHas.js generated vendored Normal file
View File

@@ -0,0 +1,26 @@
'use strict';
var $TypeError = require('es-errors/type');
var CanonicalizeKeyedCollectionKey = require('./CanonicalizeKeyedCollectionKey');
var IsArray = require('./IsArray');
var SameValue = require('./SameValue');
var some = require('../helpers/some');
// https://262.ecma-international.org/16.0/#sec-setdatahas
module.exports = function SetDataHas(setData, value) {
if (!IsArray(setData) && setData !== 'EMPTY') {
throw new $TypeError('Assertion failed: `setData` must be a List or ~EMPTY~');
}
// if (SetDataIndex(setData, value) === 'NOT-FOUND') { return false; } // step 1
// return true; // step 2
var canonValue = CanonicalizeKeyedCollectionKey(value);
return some(setData, function (e) {
return SameValue(e, canonValue);
});
};