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 AddEntriesFromIterable = require('es-abstract/2024/AddEntriesFromIterable');
var CreateDataPropertyOrThrow = require('es-abstract/2024/CreateDataPropertyOrThrow');
var RequireObjectCoercible = require('es-object-atoms/RequireObjectCoercible');
var ToPropertyKey = require('es-abstract/2024/ToPropertyKey');
var adder = function addDataProperty(key, value) {
var O = this; // eslint-disable-line no-invalid-this
var propertyKey = ToPropertyKey(key);
CreateDataPropertyOrThrow(O, propertyKey, value);
};
module.exports = function fromEntries(iterable) {
RequireObjectCoercible(iterable);
return AddEntriesFromIterable({}, iterable, adder);
};