@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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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 $O(1)$ stack overhead,
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. The data-last currying
566
- adds a negligible function call overhead, which is the expected cost of composability. For
567
- operations where native overhead is significant, custom implementations are used that often run
568
- faster than their native counterparts.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nlozgachev/pipelined",
3
- "version": "0.51.0",
3
+ "version": "0.52.0",
4
4
  "description": "Opinionated functional abstractions for TypeScript",
5
5
  "license": "BSD-3-Clause",
6
6
  "homepage": "https://pipelined.lozgachev.dev",