@nlozgachev/pipelined 0.37.0 → 0.37.1
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 +18 -7
- package/dist/{Task-fn1n--6H.d.mts → Task-DcXhCZYg.d.mts} +429 -403
- package/dist/{Task-DIgwvoIb.d.ts → Task-uupX7xd9.d.ts} +429 -403
- package/dist/{chunk-VWVPHDZO.mjs → chunk-5AFEEFE4.mjs} +5 -1
- package/dist/{chunk-72BGUEQM.mjs → chunk-E7YI5PVW.mjs} +2 -2
- package/dist/{chunk-SHO53CQC.mjs → chunk-M2X7TFKN.mjs} +483 -103
- package/dist/core.d.mts +683 -651
- package/dist/core.d.ts +683 -651
- package/dist/core.js +319 -261
- package/dist/core.mjs +6 -8
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +336 -278
- package/dist/index.mjs +16 -21
- package/dist/types.d.mts +29 -29
- package/dist/types.d.ts +29 -29
- package/dist/types.mjs +3 -6
- package/dist/utils.d.mts +1 -1
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +81 -55
- package/dist/utils.mjs +3 -4
- package/package.json +10 -3
- package/dist/chunk-DBIC62UV.mjs +0 -6
- package/dist/chunk-IPP4XFYH.mjs +0 -0
- package/dist/chunk-PUMSVZB4.mjs +0 -334
package/dist/core.mjs
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Combinable,
|
|
3
|
+
Deferred,
|
|
3
4
|
Equality,
|
|
4
5
|
Lazy,
|
|
5
6
|
Lens,
|
|
6
7
|
Logged,
|
|
8
|
+
Maybe,
|
|
7
9
|
Op,
|
|
8
10
|
Optional,
|
|
9
11
|
Ordering,
|
|
@@ -12,21 +14,17 @@ import {
|
|
|
12
14
|
Refinement,
|
|
13
15
|
RemoteData,
|
|
14
16
|
Resource,
|
|
17
|
+
Result,
|
|
15
18
|
State,
|
|
19
|
+
Task,
|
|
16
20
|
TaskMaybe,
|
|
17
21
|
TaskResult,
|
|
18
22
|
TaskValidation,
|
|
19
23
|
These,
|
|
20
24
|
Tuple,
|
|
21
25
|
Validation
|
|
22
|
-
} from "./chunk-
|
|
23
|
-
import
|
|
24
|
-
Deferred,
|
|
25
|
-
Maybe,
|
|
26
|
-
Result,
|
|
27
|
-
Task
|
|
28
|
-
} from "./chunk-PUMSVZB4.mjs";
|
|
29
|
-
import "./chunk-VWVPHDZO.mjs";
|
|
26
|
+
} from "./chunk-M2X7TFKN.mjs";
|
|
27
|
+
import "./chunk-5AFEEFE4.mjs";
|
|
30
28
|
export {
|
|
31
29
|
Combinable,
|
|
32
30
|
Deferred,
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { and, compose, constFalse, constNull, constTrue, constUndefined, constVoid, constant, converge, curry, curry3, curry4, defaultTo, flip, flow, identity, juxt, memoize, memoizeWeak, not, on, once, or, pipe, tap, uncurry, uncurry3, uncurry4 } from './composition.mjs';
|
|
2
2
|
export { Combinable, Failed, Failure, Lazy, Lens, Loading, Logged, NotAsked, Op, Optional, Passed, Predicate, Reader, Refinement, RemoteData, Resource, State, Success, TaskMaybe, TaskResult, TaskValidation, These, TheseBoth, TheseFirst, TheseSecond, Tuple, Validation } from './core.mjs';
|
|
3
|
-
export { D as Deferred, E as Equality, a as Err, M as Maybe, N as None, O as Ok, b as Ordering, R as Result, S as Some, T as Task } from './Task-
|
|
3
|
+
export { D as Deferred, E as Equality, a as Err, M as Maybe, N as None, O as Ok, b as Ordering, R as Result, S as Some, T as Task } from './Task-DcXhCZYg.mjs';
|
|
4
4
|
export { Brand, Duration, NonEmptyList, isNonEmptyList } from './types.mjs';
|
|
5
5
|
export { Arr, Dict, Num, Rec, Str, Uniq } from './utils.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { and, compose, constFalse, constNull, constTrue, constUndefined, constVoid, constant, converge, curry, curry3, curry4, defaultTo, flip, flow, identity, juxt, memoize, memoizeWeak, not, on, once, or, pipe, tap, uncurry, uncurry3, uncurry4 } from './composition.js';
|
|
2
2
|
export { Combinable, Failed, Failure, Lazy, Lens, Loading, Logged, NotAsked, Op, Optional, Passed, Predicate, Reader, Refinement, RemoteData, Resource, State, Success, TaskMaybe, TaskResult, TaskValidation, These, TheseBoth, TheseFirst, TheseSecond, Tuple, Validation } from './core.js';
|
|
3
|
-
export { D as Deferred, E as Equality, a as Err, M as Maybe, N as None, O as Ok, b as Ordering, R as Result, S as Some, T as Task } from './Task-
|
|
3
|
+
export { D as Deferred, E as Equality, a as Err, M as Maybe, N as None, O as Ok, b as Ordering, R as Result, S as Some, T as Task } from './Task-uupX7xd9.js';
|
|
4
4
|
export { Brand, Duration, NonEmptyList, isNonEmptyList } from './types.js';
|
|
5
5
|
export { Arr, Dict, Num, Rec, Str, Uniq } from './utils.js';
|