UNPKG

@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.

18 lines 331 B
/** * @module Collection */ /** * @internal */ export class MergeIterable { iterables; constructor(iterables) { this.iterables = iterables; } *[Symbol.iterator]() { for (const iterable of this.iterables) { yield* iterable; } } } //# sourceMappingURL=merge-iterable.js.map