@daiso-tech/core
Version:
The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.
19 lines • 449 B
JavaScript
/**
* @module Collection
*/
import { resolveIterableValue, } from "../../../../utilities/_module.js";
/**
* @internal
*/
export class MergeIterable {
iterables;
constructor(iterables) {
this.iterables = iterables;
}
*[Symbol.iterator]() {
for (const iterable of resolveIterableValue(this.iterables)) {
yield* resolveIterableValue(iterable);
}
}
}
//# sourceMappingURL=merge-iterable.js.map