@nlozgachev/pipelined 0.58.0 → 0.59.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 +4 -4
- package/dist/{chunk-JSG7SFXS.js → composition.mjs} +43 -18
- package/dist/{chunk-VYHAA4KO.js → core.mjs} +28 -6
- package/dist/{chunk-FVWJMPQI.js → data.mjs} +261 -7
- package/dist/index.mjs +4432 -0
- package/dist/{chunk-OIIOGDHK.js → types.mjs} +2 -3
- package/package.json +41 -21
- package/dist/composition.js +0 -65
- package/dist/core.js +0 -49
- package/dist/data.js +0 -22
- package/dist/index.js +0 -136
- package/dist/types.js +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nlozgachev/pipelined",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.59.0",
|
|
4
4
|
"description": "Opinionated functional abstractions for TypeScript",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"homepage": "https://pipelined.lozgachev.dev",
|
|
@@ -33,24 +33,44 @@
|
|
|
33
33
|
},
|
|
34
34
|
"exports": {
|
|
35
35
|
"./composition": {
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
"import": {
|
|
37
|
+
"types": "./dist/composition.d.ts",
|
|
38
|
+
"default": "./dist/composition.mjs"
|
|
39
|
+
},
|
|
40
|
+
"require": {
|
|
41
|
+
"types": "./dist/composition.d.cts",
|
|
42
|
+
"default": "./dist/composition.cjs"
|
|
43
|
+
}
|
|
39
44
|
},
|
|
40
45
|
"./core": {
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
46
|
+
"import": {
|
|
47
|
+
"types": "./dist/core.d.ts",
|
|
48
|
+
"default": "./dist/core.mjs"
|
|
49
|
+
},
|
|
50
|
+
"require": {
|
|
51
|
+
"types": "./dist/core.d.cts",
|
|
52
|
+
"default": "./dist/core.cjs"
|
|
53
|
+
}
|
|
44
54
|
},
|
|
45
55
|
"./data": {
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
56
|
+
"import": {
|
|
57
|
+
"types": "./dist/data.d.ts",
|
|
58
|
+
"default": "./dist/data.mjs"
|
|
59
|
+
},
|
|
60
|
+
"require": {
|
|
61
|
+
"types": "./dist/data.d.cts",
|
|
62
|
+
"default": "./dist/data.cjs"
|
|
63
|
+
}
|
|
49
64
|
},
|
|
50
65
|
"./types": {
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
66
|
+
"import": {
|
|
67
|
+
"types": "./dist/types.d.ts",
|
|
68
|
+
"default": "./dist/types.mjs"
|
|
69
|
+
},
|
|
70
|
+
"require": {
|
|
71
|
+
"types": "./dist/types.d.cts",
|
|
72
|
+
"default": "./dist/types.cjs"
|
|
73
|
+
}
|
|
54
74
|
}
|
|
55
75
|
},
|
|
56
76
|
"scripts": {
|
|
@@ -84,28 +104,28 @@
|
|
|
84
104
|
},
|
|
85
105
|
"size-limit": [
|
|
86
106
|
{
|
|
87
|
-
"path": "dist/index.
|
|
107
|
+
"path": "dist/index.mjs",
|
|
88
108
|
"limit": "25 KB",
|
|
89
109
|
"gzip": true
|
|
90
110
|
},
|
|
91
111
|
{
|
|
92
|
-
"path": "dist/core.
|
|
112
|
+
"path": "dist/core.mjs",
|
|
93
113
|
"limit": "16 KB",
|
|
94
114
|
"gzip": true
|
|
95
115
|
},
|
|
96
116
|
{
|
|
97
|
-
"path": "dist/composition.
|
|
98
|
-
"limit": "
|
|
117
|
+
"path": "dist/composition.mjs",
|
|
118
|
+
"limit": "3 KB",
|
|
99
119
|
"gzip": true
|
|
100
120
|
},
|
|
101
121
|
{
|
|
102
|
-
"path": "dist/data.
|
|
103
|
-
"limit": "
|
|
122
|
+
"path": "dist/data.mjs",
|
|
123
|
+
"limit": "10 KB",
|
|
104
124
|
"gzip": true
|
|
105
125
|
},
|
|
106
126
|
{
|
|
107
|
-
"path": "dist/types.
|
|
108
|
-
"limit": "
|
|
127
|
+
"path": "dist/types.mjs",
|
|
128
|
+
"limit": "700 B",
|
|
109
129
|
"gzip": true
|
|
110
130
|
}
|
|
111
131
|
],
|
package/dist/composition.js
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
and,
|
|
3
|
-
compose,
|
|
4
|
-
constFalse,
|
|
5
|
-
constNull,
|
|
6
|
-
constTrue,
|
|
7
|
-
constUndefined,
|
|
8
|
-
constVoid,
|
|
9
|
-
constant,
|
|
10
|
-
converge,
|
|
11
|
-
curry,
|
|
12
|
-
curry3,
|
|
13
|
-
curry4,
|
|
14
|
-
defaultTo,
|
|
15
|
-
flip,
|
|
16
|
-
flow,
|
|
17
|
-
identity,
|
|
18
|
-
juxt,
|
|
19
|
-
memoize,
|
|
20
|
-
memoizeWeak,
|
|
21
|
-
not,
|
|
22
|
-
on,
|
|
23
|
-
once,
|
|
24
|
-
or,
|
|
25
|
-
pipe,
|
|
26
|
-
tap,
|
|
27
|
-
tuple,
|
|
28
|
-
uncurry,
|
|
29
|
-
uncurry3,
|
|
30
|
-
uncurry4,
|
|
31
|
-
untuple
|
|
32
|
-
} from "./chunk-JSG7SFXS.js";
|
|
33
|
-
import "./chunk-OIIOGDHK.js";
|
|
34
|
-
export {
|
|
35
|
-
and,
|
|
36
|
-
compose,
|
|
37
|
-
constFalse,
|
|
38
|
-
constNull,
|
|
39
|
-
constTrue,
|
|
40
|
-
constUndefined,
|
|
41
|
-
constVoid,
|
|
42
|
-
constant,
|
|
43
|
-
converge,
|
|
44
|
-
curry,
|
|
45
|
-
curry3,
|
|
46
|
-
curry4,
|
|
47
|
-
defaultTo,
|
|
48
|
-
flip,
|
|
49
|
-
flow,
|
|
50
|
-
identity,
|
|
51
|
-
juxt,
|
|
52
|
-
memoize,
|
|
53
|
-
memoizeWeak,
|
|
54
|
-
not,
|
|
55
|
-
on,
|
|
56
|
-
once,
|
|
57
|
-
or,
|
|
58
|
-
pipe,
|
|
59
|
-
tap,
|
|
60
|
-
tuple,
|
|
61
|
-
uncurry,
|
|
62
|
-
uncurry3,
|
|
63
|
-
uncurry4,
|
|
64
|
-
untuple
|
|
65
|
-
};
|
package/dist/core.js
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Combinable,
|
|
3
|
-
Deferred,
|
|
4
|
-
Equality,
|
|
5
|
-
Lazy,
|
|
6
|
-
Lens,
|
|
7
|
-
Logged,
|
|
8
|
-
Maybe,
|
|
9
|
-
Op,
|
|
10
|
-
Optional,
|
|
11
|
-
Ordering,
|
|
12
|
-
Pair,
|
|
13
|
-
Predicate,
|
|
14
|
-
Reader,
|
|
15
|
-
Refinement,
|
|
16
|
-
RemoteData,
|
|
17
|
-
Resource,
|
|
18
|
-
Result,
|
|
19
|
-
State,
|
|
20
|
-
Stream,
|
|
21
|
-
Task,
|
|
22
|
-
These,
|
|
23
|
-
Validation
|
|
24
|
-
} from "./chunk-VYHAA4KO.js";
|
|
25
|
-
import "./chunk-OIIOGDHK.js";
|
|
26
|
-
export {
|
|
27
|
-
Combinable,
|
|
28
|
-
Deferred,
|
|
29
|
-
Equality,
|
|
30
|
-
Lazy,
|
|
31
|
-
Lens,
|
|
32
|
-
Logged,
|
|
33
|
-
Maybe,
|
|
34
|
-
Op,
|
|
35
|
-
Optional,
|
|
36
|
-
Ordering,
|
|
37
|
-
Pair,
|
|
38
|
-
Predicate,
|
|
39
|
-
Reader,
|
|
40
|
-
Refinement,
|
|
41
|
-
RemoteData,
|
|
42
|
-
Resource,
|
|
43
|
-
Result,
|
|
44
|
-
State,
|
|
45
|
-
Stream,
|
|
46
|
-
Task,
|
|
47
|
-
These,
|
|
48
|
-
Validation
|
|
49
|
-
};
|
package/dist/data.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Arr,
|
|
3
|
-
BigNum,
|
|
4
|
-
Dict,
|
|
5
|
-
Json,
|
|
6
|
-
Num,
|
|
7
|
-
Rec,
|
|
8
|
-
Str,
|
|
9
|
-
Uniq
|
|
10
|
-
} from "./chunk-FVWJMPQI.js";
|
|
11
|
-
import "./chunk-VYHAA4KO.js";
|
|
12
|
-
import "./chunk-OIIOGDHK.js";
|
|
13
|
-
export {
|
|
14
|
-
Arr,
|
|
15
|
-
BigNum,
|
|
16
|
-
Dict,
|
|
17
|
-
Json,
|
|
18
|
-
Num,
|
|
19
|
-
Rec,
|
|
20
|
-
Str,
|
|
21
|
-
Uniq
|
|
22
|
-
};
|
package/dist/index.js
DELETED
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
and,
|
|
3
|
-
compose,
|
|
4
|
-
constFalse,
|
|
5
|
-
constNull,
|
|
6
|
-
constTrue,
|
|
7
|
-
constUndefined,
|
|
8
|
-
constVoid,
|
|
9
|
-
constant,
|
|
10
|
-
converge,
|
|
11
|
-
curry,
|
|
12
|
-
curry3,
|
|
13
|
-
curry4,
|
|
14
|
-
defaultTo,
|
|
15
|
-
flip,
|
|
16
|
-
flow,
|
|
17
|
-
identity,
|
|
18
|
-
juxt,
|
|
19
|
-
memoize,
|
|
20
|
-
memoizeWeak,
|
|
21
|
-
not,
|
|
22
|
-
on,
|
|
23
|
-
once,
|
|
24
|
-
or,
|
|
25
|
-
pipe,
|
|
26
|
-
tap,
|
|
27
|
-
tuple,
|
|
28
|
-
uncurry,
|
|
29
|
-
uncurry3,
|
|
30
|
-
uncurry4,
|
|
31
|
-
untuple
|
|
32
|
-
} from "./chunk-JSG7SFXS.js";
|
|
33
|
-
import {
|
|
34
|
-
Arr,
|
|
35
|
-
BigNum,
|
|
36
|
-
Dict,
|
|
37
|
-
Json,
|
|
38
|
-
Num,
|
|
39
|
-
Rec,
|
|
40
|
-
Str,
|
|
41
|
-
Uniq
|
|
42
|
-
} from "./chunk-FVWJMPQI.js";
|
|
43
|
-
import {
|
|
44
|
-
Combinable,
|
|
45
|
-
Deferred,
|
|
46
|
-
Equality,
|
|
47
|
-
Lazy,
|
|
48
|
-
Lens,
|
|
49
|
-
Logged,
|
|
50
|
-
Maybe,
|
|
51
|
-
Op,
|
|
52
|
-
Optional,
|
|
53
|
-
Ordering,
|
|
54
|
-
Pair,
|
|
55
|
-
Predicate,
|
|
56
|
-
Reader,
|
|
57
|
-
Refinement,
|
|
58
|
-
RemoteData,
|
|
59
|
-
Resource,
|
|
60
|
-
Result,
|
|
61
|
-
State,
|
|
62
|
-
Stream,
|
|
63
|
-
Task,
|
|
64
|
-
These,
|
|
65
|
-
Validation
|
|
66
|
-
} from "./chunk-VYHAA4KO.js";
|
|
67
|
-
import {
|
|
68
|
-
Brand,
|
|
69
|
-
Duration,
|
|
70
|
-
RetryPolicy
|
|
71
|
-
} from "./chunk-OIIOGDHK.js";
|
|
72
|
-
export {
|
|
73
|
-
Arr,
|
|
74
|
-
BigNum,
|
|
75
|
-
Brand,
|
|
76
|
-
Combinable,
|
|
77
|
-
Deferred,
|
|
78
|
-
Dict,
|
|
79
|
-
Duration,
|
|
80
|
-
Equality,
|
|
81
|
-
Json,
|
|
82
|
-
Lazy,
|
|
83
|
-
Lens,
|
|
84
|
-
Logged,
|
|
85
|
-
Maybe,
|
|
86
|
-
Num,
|
|
87
|
-
Op,
|
|
88
|
-
Optional,
|
|
89
|
-
Ordering,
|
|
90
|
-
Pair,
|
|
91
|
-
Predicate,
|
|
92
|
-
Reader,
|
|
93
|
-
Rec,
|
|
94
|
-
Refinement,
|
|
95
|
-
RemoteData,
|
|
96
|
-
Resource,
|
|
97
|
-
Result,
|
|
98
|
-
RetryPolicy,
|
|
99
|
-
State,
|
|
100
|
-
Str,
|
|
101
|
-
Stream,
|
|
102
|
-
Task,
|
|
103
|
-
These,
|
|
104
|
-
Uniq,
|
|
105
|
-
Validation,
|
|
106
|
-
and,
|
|
107
|
-
compose,
|
|
108
|
-
constFalse,
|
|
109
|
-
constNull,
|
|
110
|
-
constTrue,
|
|
111
|
-
constUndefined,
|
|
112
|
-
constVoid,
|
|
113
|
-
constant,
|
|
114
|
-
converge,
|
|
115
|
-
curry,
|
|
116
|
-
curry3,
|
|
117
|
-
curry4,
|
|
118
|
-
defaultTo,
|
|
119
|
-
flip,
|
|
120
|
-
flow,
|
|
121
|
-
identity,
|
|
122
|
-
juxt,
|
|
123
|
-
memoize,
|
|
124
|
-
memoizeWeak,
|
|
125
|
-
not,
|
|
126
|
-
on,
|
|
127
|
-
once,
|
|
128
|
-
or,
|
|
129
|
-
pipe,
|
|
130
|
-
tap,
|
|
131
|
-
tuple,
|
|
132
|
-
uncurry,
|
|
133
|
-
uncurry3,
|
|
134
|
-
uncurry4,
|
|
135
|
-
untuple
|
|
136
|
-
};
|