-
Others have mentioned the propsed iterator helpers.
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
Someone posted this recently. Maybe it'll help?
-
-
-
This is what LINQ does in C#. Many have made js implementations; here's my attempt. Imo the real inefficiency of map/filter is that it allocates a new array for each step.
-
fromable - https://github.com/baron816/fromable
-
I'm not as familiar with this but I think Ramda can do this with pipe / compose.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
There's also IxJS, which is basically RxJS but for arrays.
-
react-table
🤖 Headless UI for building powerful tables & datagrids for TS/JS - React-Table, Vue-Table, Solid-Table, Svelte-Table
true, I could memo other rows while I edit that one row, so in essence, only that one single row would be rerendered every time, but I haven't quite figured out how to do it with react-table lib.
-
Here is a lazy implementation of map using generators as an example.