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.

26 lines 675 B
/** * @module Collection */ import {} from "../../../../collection/contracts/_module-exports.js"; import { resolveInvokable } from "../../../../utilities/_module-exports.js"; /** * @internal */ export class WhenIterable { collection; condition; callback; constructor(collection, condition, callback) { this.collection = collection; this.condition = condition; this.callback = callback; } *[Symbol.iterator]() { if (this.condition()) { yield* resolveInvokable(this.callback)(this.collection); return; } yield* this.collection; } } //# sourceMappingURL=when-iterable.js.map