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.

21 lines 538 B
/** * @module Collection */ import {} from "../../../../collection/contracts/_module-exports.js"; import { resolveInvokable } from "../../../../utilities/_module-exports.js"; /** * @internal */ export class TapIterable { collection; callback; constructor(collection, callback) { this.collection = collection; this.callback = callback; } *[Symbol.iterator]() { resolveInvokable(this.callback)(this.collection); yield* this.collection; } } //# sourceMappingURL=tap-iterable.js.map