You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
523 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class ConcatIterator {
constructor(toConcat) {
this.toConcat = toConcat;
}
next() {
if (this.toConcat.length === 0) {
return { done: true };
}
const result = this.toConcat[0].next();
if (!result.done) {
return result;
}
this.toConcat.shift();
return this.next();
}
}
exports.ConcatIterator = ConcatIterator;
//# sourceMappingURL=concat.js.map