merge completed... now to fix all the bugs...

This commit is contained in:
howlingsails 2021-12-12 23:02:38 -08:00
commit 87c4d80fbc
3472 changed files with 466748 additions and 6517 deletions

29
node_modules/es-abstract/2021/IterableToList.js generated vendored Normal file
View file

@ -0,0 +1,29 @@
'use strict';
var callBound = require('call-bind/callBound');
var $arrayPush = callBound('Array.prototype.push');
var GetIterator = require('./GetIterator');
var IteratorStep = require('./IteratorStep');
var IteratorValue = require('./IteratorValue');
// https://262.ecma-international.org/12.0/#sec-iterabletolist
module.exports = function IterableToList(items) {
var iterator;
if (arguments.length > 1) {
iterator = GetIterator(items, 'sync', arguments[1]);
} else {
iterator = GetIterator(items, 'sync');
}
var values = [];
var next = true;
while (next) {
next = IteratorStep(iterator);
if (next) {
var nextValue = IteratorValue(next);
$arrayPush(values, nextValue);
}
}
return values;
};