Posts

Showing posts from September, 2025

⚡ v0.0.0-dev.5 — Async Iteration Arrives

  ⚡ v0.0.0-dev.5 — Async Iteration Arrives Bringing fluent, declarative power to promises and async iterables. 🚀 What’s New The   @fizzwiz/fluent   library now supports   asynchronous iteration   with the brand-new 🌀   AsyncEach   class . Just like   Each ,   AsyncEach   is: Lazy   – nothing runs until you iterate. Composable   – chain transformations fluently. Declarative   – describe what, not how. But now it works directly with   promises   and   async iterables . 🔑 Highlights Async pipelines : fluently compose transformations over async data. Promise bridging : work with iterables of Promises   before   they resolve. Same 9 core methods   as   Each   and   What . This release unlocks natural, fluent workflows for both synchronous   and   asynchronous data. 🧩 Example import { AsyncEach } from "@fizzwiz/fluent" ; const seq = AsyncEach . of ( Promise . reso...