Projektstart

This commit is contained in:
2026-01-22 15:49:12 +01:00
parent 7212eb6f7a
commit 57e5f652f8
10637 changed files with 2598792 additions and 64 deletions

29
backend/node_modules/obliterator/consume.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
/* eslint no-constant-condition: 0 */
/**
* Obliterator Consume Function
* =============================
*
* Function consuming the given iterator for n or every steps.
*/
/**
* Consume.
*
* @param {Iterator} iterator - Target iterator.
* @param {number} [steps] - Optional steps.
*/
module.exports = function consume(iterator, steps) {
var step,
l = arguments.length > 1 ? steps : Infinity,
i = 0;
while (true) {
if (i === l) return;
step = iterator.next();
if (step.done) return;
i++;
}
};