@nlozgachev/pipelined 0.51.0 → 0.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -437,7 +437,7 @@ Stream.emit(flowStream, {
|
|
|
437
437
|
sub.getState(); // { completedFlows: 1 }
|
|
438
438
|
```
|
|
439
439
|
|
|
440
|
-
`Stream` executes cascading events iteratively using an internal queue with
|
|
440
|
+
`Stream` executes cascading events iteratively using an internal queue with O(1) stack overhead,
|
|
441
441
|
completely preventing stack overflow crashes and out-of-order re-entrant execution.
|
|
442
442
|
|
|
443
443
|
### Deep immutable updates without spread boilerplate
|
|
@@ -562,10 +562,10 @@ if (Result.is.ok(email)) {
|
|
|
562
562
|
- **`@nlozgachev/pipelined/types`**: Type-level utilities (`Brand`, `Duration`, `RetryPolicy`) (<2
|
|
563
563
|
KB gzipped).
|
|
564
564
|
|
|
565
|
-
Every utility in the library is benchmarked against its native equivalent.
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
565
|
+
Every utility in the library is benchmarked against its native equivalent. While currying introduces
|
|
566
|
+
a small function call overhead for composability, the library uses custom algorithms for
|
|
567
|
+
data-structure methods whenever the native JavaScript implementations are slower, ensuring the
|
|
568
|
+
fastest execution path possible.
|
|
569
569
|
|
|
570
570
|
## License
|
|
571
571
|
|