ctx-core 5.18.6 → 5.18.7

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/all/eq/index.d.ts CHANGED
@@ -7,7 +7,7 @@ export declare type eq_T<I> = (a_nowrap:I)=>boolean
7
7
  /**
8
8
  * Returns function that returns `==` operator to all values in `in_value_aS`.
9
9
  */
10
- export declare function eq_<I>(a_nowrap:a_nowrap_T<I>):eq_fn_T<I>
10
+ export declare function eq_<I>(a_nowrap:a_nowrap_T<unknown>):eq_fn_T<I>
11
11
  export {
12
12
  eq_ as _eq,
13
13
  eq_ as _fn__eq,
@@ -0,0 +1,20 @@
1
+ import { test } from 'uvu'
2
+ import { equal } from 'uvu/assert'
3
+ import { eq, eq_ } from './index.js'
4
+ test('eq', ()=>{
5
+ equal(eq([0, 0]), true)
6
+ equal(eq([0, 1]), false)
7
+ equal(eq([{}, {}]), false)
8
+ equal(eq([undefined, {}]), false)
9
+ equal(eq([undefined, null]), true)
10
+ equal(eq([undefined, undefined]), true)
11
+ })
12
+ test('eq_', ()=>{
13
+ equal(eq_(0)(0), true)
14
+ equal(eq_(0)(1), false)
15
+ equal(eq_({})({}), false)
16
+ equal(eq_(undefined)({}), false)
17
+ equal(eq_(undefined)(null), true)
18
+ equal(eq_(undefined)(undefined), true)
19
+ })
20
+ test.run()
@@ -6,7 +6,7 @@ export declare function eql<I>(a_unwrap:I):boolean
6
6
  /**
7
7
  * Returns function that returns `===` operator to all values in `in_value_a`.
8
8
  */
9
- export declare function eql_<I>(in_value_a:a_nowrap_T<I>):(val:I)=>boolean
9
+ export declare function eql_<I>(in_value_a:a_nowrap_T<unknown>):(val:I)=>boolean
10
10
  export { eql_ as _eql, }
11
11
  /**
12
12
  * Returns function that applies `===` operator to `compare` & `value`.
package/all/eql/index.js CHANGED
@@ -6,11 +6,9 @@ import { wrap_concat } from '../wrap_concat/index.js'
6
6
  * @returns {boolean}
7
7
  */
8
8
  export function eql(a_unwrap) {
9
- const value_a = wrap_a_(a_unwrap)
10
- let current_value = value_a[0]
11
- for (let i = 1; i < value_a.length; i++) {
12
- const value = value_a[i]
13
- if (current_value !== value) return false
9
+ let [cmp_val, ...rest] = wrap_a_(a_unwrap)
10
+ for (let val of rest) {
11
+ if (cmp_val !== val) return false
14
12
  }
15
13
  return true
16
14
  }
@@ -0,0 +1,20 @@
1
+ import { test } from 'uvu'
2
+ import { equal } from 'uvu/assert'
3
+ import { eql, eql_ } from './index.js'
4
+ test('eql', ()=>{
5
+ equal(eql([0, 0]), true)
6
+ equal(eql([0, 1]), false)
7
+ equal(eql([{}, {}]), false)
8
+ equal(eql([undefined, {}]), false)
9
+ equal(eql([undefined, null]), false)
10
+ equal(eql([undefined, undefined]), true)
11
+ })
12
+ test('eql_', ()=>{
13
+ equal(eql_(0)(0), true)
14
+ equal(eql_(0)(1), false)
15
+ equal(eql_({})({}), false)
16
+ equal(eql_(undefined)({}), false)
17
+ equal(eql_(undefined)(null), false)
18
+ equal(eql_(undefined)(undefined), true)
19
+ })
20
+ test.run()
@@ -1,11 +1,10 @@
1
1
  import type { a_nowrap_T } from '../a_nowrap/index.js'
2
- import type { wrap_a_T } from '../wrap_a/index.js'
3
2
  /**
4
3
  * Returns `!=` operator to all values in `in_value_a`.
5
4
  */
6
- export declare function neq<I>(in_value_a:wrap_a_T<I>):boolean
5
+ export declare function neq<I>(a_unwrap:I):boolean
7
6
  /**
8
7
  * Return function that Returns `!=` operator to all values in `in_value_a`.
9
8
  */
10
- export declare function neq_<I>(in_value_a:a_nowrap_T<I>):(val:I)=>boolean
9
+ export declare function neq_<I>(in_value_a:a_nowrap_T<unknown>):(val:I)=>boolean
11
10
  export { neq_ as _neq, }
package/all/neq/index.js CHANGED
@@ -7,11 +7,9 @@ import { wrap_concat } from '../wrap_concat/index.js'
7
7
  * @returns {boolean}
8
8
  */
9
9
  export function neq(in_value_a) {
10
- const value_a = wrap_a_(in_value_a)
11
- let current_value = value_a[0]
12
- for (let i = 1; i < value_a.length; i++) {
13
- const value = value_a[i]
14
- if (current_value == value) return false
10
+ let [cmp_val, ...rest] = wrap_a_(in_value_a)
11
+ for (let val of rest) {
12
+ if (cmp_val == val) return false
15
13
  }
16
14
  return true
17
15
  }
@@ -0,0 +1,20 @@
1
+ import { test } from 'uvu'
2
+ import { equal } from 'uvu/assert'
3
+ import { neq, neq_ } from './index.js'
4
+ test('neq', ()=>{
5
+ equal(neq([0, 0]), false)
6
+ equal(neq([0, 1]), true)
7
+ equal(neq([{}, {}]), true)
8
+ equal(neq([undefined, {}]), true)
9
+ equal(neq([undefined, null]), false)
10
+ equal(neq([undefined, undefined]), false)
11
+ })
12
+ test('neq_', ()=>{
13
+ equal(neq_(0)(0), false)
14
+ equal(neq_(0)(1), true)
15
+ equal(neq_({})({}), true)
16
+ equal(neq_(undefined)({}), true)
17
+ equal(neq_(undefined)(null), false)
18
+ equal(neq_(undefined)(undefined), false)
19
+ })
20
+ test.run()
@@ -8,5 +8,7 @@ export declare function neql<I>(a_unwrap:I):boolean
8
8
  * @param in_value_a
9
9
  * @returns {function(*=): boolean}
10
10
  */
11
- export declare function neql_<I>(in_value_a:a_nowrap_T<I>):(value:I)=>boolean
11
+ export declare function neql_<I>(
12
+ in_value_a:a_nowrap_T<unknown>
13
+ ):(value:I)=>boolean
12
14
  export { neql_ as _neql, }
package/all/neql/index.js CHANGED
@@ -6,11 +6,9 @@ import { wrap_concat } from '../wrap_concat/index.js'
6
6
  * @returns {boolean}
7
7
  */
8
8
  export function neql(a_unwrap) {
9
- const value_a = wrap_a_(a_unwrap)
10
- let current_value = value_a[0]
11
- for (let i = 1; i < value_a.length; i++) {
12
- const value = value_a[i]
13
- if (current_value === value) return false
9
+ let [cmp_val, ...rest] = wrap_a_(a_unwrap)
10
+ for (let val of rest) {
11
+ if (cmp_val === val) return false
14
12
  }
15
13
  return true
16
14
  }
@@ -0,0 +1,20 @@
1
+ import { test } from 'uvu'
2
+ import { equal } from 'uvu/assert'
3
+ import { neql, neql_ } from './index.js'
4
+ test('neql', ()=>{
5
+ equal(neql([0, 0]), false)
6
+ equal(neql([0, 1]), true)
7
+ equal(neql([{}, {}]), true)
8
+ equal(neql([undefined, {}]), true)
9
+ equal(neql([undefined, null]), true)
10
+ equal(neql([undefined, undefined]), false)
11
+ })
12
+ test('neql_', ()=>{
13
+ equal(neql_(0)(0), false)
14
+ equal(neql_(0)(1), true)
15
+ equal(neql_({})({}), true)
16
+ equal(neql_(undefined)({}), true)
17
+ equal(neql_(undefined)(null), true)
18
+ equal(neql_(undefined)(undefined), false)
19
+ })
20
+ test.run()
package/package.json CHANGED
@@ -1,251 +1,250 @@
1
1
  {
2
- "name": "ctx-core",
3
- "version": "5.18.6",
4
- "description": "ctx-core core library",
5
- "keywords": [
6
- "ctx-core",
7
- "array",
8
- "combinators",
9
- "function",
10
- "object",
11
- "set"
12
- ],
13
- "homepage": "https://github.com/ctx-core/ctx-core#readme",
14
- "bugs": {
15
- "url": "https://github.com/ctx-core/ctx-core/issues"
16
- },
17
- "repository": {
18
- "type": "git",
19
- "url": "https://github.com/ctx-core/ctx-core.git"
20
- },
21
- "license": "Apache-2.0",
22
- "author": "Brian Takita",
23
- "type": "module",
24
- "files": [
25
- "*.d.ts",
26
- "*.js",
27
- "*.json",
28
- "all",
29
- "array",
30
- "atob",
31
- "base16",
32
- "be",
33
- "btoa",
34
- "buffer",
35
- "chain",
36
- "class",
37
- "cli-args",
38
- "color",
39
- "combinators",
40
- "crypto",
41
- "currency",
42
- "data",
43
- "date",
44
- "debounce",
45
- "deep_equal",
46
- "env",
47
- "error",
48
- "falsy",
49
- "fetch",
50
- "fibonacci",
51
- "fs",
52
- "function",
53
- "functional",
54
- "html",
55
- "http",
56
- "math",
57
- "matrix",
58
- "nullish",
59
- "number",
60
- "object",
61
- "promise",
62
- "queue",
63
- "random",
64
- "regex",
65
- "rmemo",
66
- "run",
67
- "set",
68
- "sleep",
69
- "string",
70
- "tempfile",
71
- "test",
72
- "time",
73
- "tuple",
74
- "types",
75
- "uri",
76
- "uuid",
77
- "package.json"
78
- ],
79
- "types": "./src/index.d.ts",
80
- "exports": {
81
- ".": "./index.js",
82
- "./all": "./all/index.js",
83
- "./array": "./array/index.js",
84
- "./atob": "./atob/index.js",
85
- "./base16": "./base16/index.js",
86
- "./be": "./be/index.js",
87
- "./btoa": "./btoa/index.js",
88
- "./buffer": "./buffer/index.js",
89
- "./chain": "./chain/index.js",
90
- "./class": "./class/index.js",
91
- "./cli-args": "./cli-args/index.js",
92
- "./color": "./color/index.js",
93
- "./combinators": "./combinators/index.js",
94
- "./crypto": "./crypto/index.js",
95
- "./currency": "./currency/index.js",
96
- "./data": "./data/index.js",
97
- "./date": "./date/index.js",
98
- "./debounce": "./debounce/index.js",
99
- "./deep_equal": "./deep_equal/index.js",
100
- "./env": "./env/index.js",
101
- "./error": "./error/index.js",
102
- "./falsy": "./falsy/index.js",
103
- "./fetch": "./fetch/index.js",
104
- "./fibonacci": "./fibonacci/index.js",
105
- "./fs": "./fs/index.js",
106
- "./function": "./function/index.js",
107
- "./functional": "./functional/index.js",
108
- "./html": "./html/index.js",
109
- "./http": "./http/index.js",
110
- "./math": "./math/index.js",
111
- "./matrix": "./matrix/index.js",
112
- "./nullish": "./nullish/index.js",
113
- "./number": "./number/index.js",
114
- "./object": "./object/index.js",
115
- "./promise": "./promise/index.js",
116
- "./queue": "./queue/index.js",
117
- "./random": "./random/index.js",
118
- "./regex": "./regex/index.js",
119
- "./rmemo": "./rmemo/index.js",
120
- "./run": "./run/index.js",
121
- "./set": "./set/index.js",
122
- "./sleep": "./sleep/index.js",
123
- "./string": "./string/index.js",
124
- "./tempfile": "./tempfile/index.js",
125
- "./test": "./test/index.js",
126
- "./time": "./time/index.js",
127
- "./tuple": "./tuple/index.js",
128
- "./types": "./types/index.js",
129
- "./uri": "./uri/index.js",
130
- "./uuid": "./uuid/index.js",
131
- "./package.json": "./package.json"
132
- },
133
- "scripts": {
134
- "build": ":",
135
- "clean": ":",
136
- "exec": "$@",
137
- "prepublishOnly": "pnpm clean && pnpm build && pnpm test",
138
- "test": "pnpm run /^test:/",
139
- "test:size": "size-limit",
140
- "test:type": "check-dts",
141
- "test:unit": "NODE_OPTIONS=--loader=esmock tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
142
- "disable:test:coverage": "c8 pnpm test:unit"
143
- },
144
- "devDependencies": {
145
- "@arethetypeswrong/cli": "^0.13.5",
146
- "@ctx-core/preprocess": "^0.1.0",
147
- "@size-limit/preset-small-lib": "^11.0.1",
148
- "@types/node": "^20.11.2",
149
- "@types/sinon": "^17.0.3",
150
- "c8": "^9.1.0",
151
- "check-dts": "^0.7.2",
152
- "esbuild": "^0.19.11",
153
- "esmock": "^2.6.2",
154
- "sinon": "^17.0.1",
155
- "size-limit": "^11.0.1",
156
- "tsx": "^4.7.0",
157
- "typescript": "next",
158
- "uvu": "^0.5.6"
159
- },
160
- "publishConfig": {
161
- "access": "public",
162
- "cache": "~/.npm"
163
- },
164
- "sideEffects": false,
165
- "size-limit": [
166
- {
167
- "name": "ctx_",
168
- "import": {
169
- "./be": "{ ctx_ }"
170
- },
171
- "limit": "33 B"
172
- },
173
- {
174
- "name": "ns_ctx_",
175
- "import": {
176
- "./be": "{ ns_ctx_ }"
177
- },
178
- "limit": "85 B"
179
- },
180
- {
181
- "name": "be_",
182
- "import": {
183
- "./be": "{ be_ }"
184
- },
185
- "limit": "99 B"
186
- },
187
- {
188
- "name": "be_ ctx_",
189
- "import": {
190
- "./be": "{ be_, ctx_ }"
191
- },
192
- "limit": "131 B"
193
- },
194
- {
195
- "name": "be_ ns_ctx_",
196
- "import": {
197
- "./be": "{ be_, ctx_, ns_ctx_ }"
198
- },
199
- "limit": "190 B"
200
- },
201
- {
202
- "name": "be_ ctx_ ns_ctx_",
203
- "import": {
204
- "./be": "{ be_, ctx_, ns_ctx_ }"
205
- },
206
- "limit": "190 B"
207
- },
208
- {
209
- "name": "memo_",
210
- "import": {
211
- "./rmemo": "{ memo_ }"
212
- },
213
- "limit": "352 B"
214
- },
215
- {
216
- "name": "memo_ sig_",
217
- "import": {
218
- "./rmemo": "{ sig_, memo_ }"
219
- },
220
- "limit": "370 B"
221
- },
222
- {
223
- "name": "memo_ sig_ be_ ctx_",
224
- "import": {
225
- "./rmemo": "{ sig_, memo_, be_, ctx_ }"
226
- },
227
- "limit": "471 B"
228
- },
229
- {
230
- "name": "memo_ sig_ be_ ctx_ be_memo_pair_ be_sig_triple_",
231
- "import": {
232
- "./rmemo": "{ sig_, memo_, be_, ctx_, be_memo_pair_, be_sig_triple_ }"
233
- },
234
- "limit": "576 B"
235
- },
236
- {
237
- "name": "uuid",
238
- "import": {
239
- "./uuid": "{ uuid_ }"
240
- },
241
- "limit": "39 B"
242
- },
243
- {
244
- "name": "short uuid",
245
- "import": {
246
- "./uuid": "{ short_uuid_ }"
247
- },
248
- "limit": "116 B"
249
- }
250
- ]
2
+ "name": "ctx-core",
3
+ "version": "5.18.7",
4
+ "description": "ctx-core core library",
5
+ "keywords": [
6
+ "ctx-core",
7
+ "array",
8
+ "combinators",
9
+ "function",
10
+ "object",
11
+ "set"
12
+ ],
13
+ "homepage": "https://github.com/ctx-core/ctx-core#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/ctx-core/ctx-core/issues"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/ctx-core/ctx-core.git"
20
+ },
21
+ "license": "Apache-2.0",
22
+ "author": "Brian Takita",
23
+ "type": "module",
24
+ "files": [
25
+ "*.d.ts",
26
+ "*.js",
27
+ "*.json",
28
+ "all",
29
+ "array",
30
+ "atob",
31
+ "base16",
32
+ "be",
33
+ "btoa",
34
+ "buffer",
35
+ "chain",
36
+ "class",
37
+ "cli-args",
38
+ "color",
39
+ "combinators",
40
+ "crypto",
41
+ "currency",
42
+ "data",
43
+ "date",
44
+ "debounce",
45
+ "deep_equal",
46
+ "env",
47
+ "error",
48
+ "falsy",
49
+ "fetch",
50
+ "fibonacci",
51
+ "fs",
52
+ "function",
53
+ "functional",
54
+ "html",
55
+ "http",
56
+ "math",
57
+ "matrix",
58
+ "nullish",
59
+ "number",
60
+ "object",
61
+ "promise",
62
+ "queue",
63
+ "random",
64
+ "regex",
65
+ "rmemo",
66
+ "run",
67
+ "set",
68
+ "sleep",
69
+ "string",
70
+ "tempfile",
71
+ "test",
72
+ "time",
73
+ "tuple",
74
+ "types",
75
+ "uri",
76
+ "uuid",
77
+ "package.json"
78
+ ],
79
+ "types": "./src/index.d.ts",
80
+ "exports": {
81
+ ".": "./index.js",
82
+ "./all": "./all/index.js",
83
+ "./array": "./array/index.js",
84
+ "./atob": "./atob/index.js",
85
+ "./base16": "./base16/index.js",
86
+ "./be": "./be/index.js",
87
+ "./btoa": "./btoa/index.js",
88
+ "./buffer": "./buffer/index.js",
89
+ "./chain": "./chain/index.js",
90
+ "./class": "./class/index.js",
91
+ "./cli-args": "./cli-args/index.js",
92
+ "./color": "./color/index.js",
93
+ "./combinators": "./combinators/index.js",
94
+ "./crypto": "./crypto/index.js",
95
+ "./currency": "./currency/index.js",
96
+ "./data": "./data/index.js",
97
+ "./date": "./date/index.js",
98
+ "./debounce": "./debounce/index.js",
99
+ "./deep_equal": "./deep_equal/index.js",
100
+ "./env": "./env/index.js",
101
+ "./error": "./error/index.js",
102
+ "./falsy": "./falsy/index.js",
103
+ "./fetch": "./fetch/index.js",
104
+ "./fibonacci": "./fibonacci/index.js",
105
+ "./fs": "./fs/index.js",
106
+ "./function": "./function/index.js",
107
+ "./functional": "./functional/index.js",
108
+ "./html": "./html/index.js",
109
+ "./http": "./http/index.js",
110
+ "./math": "./math/index.js",
111
+ "./matrix": "./matrix/index.js",
112
+ "./nullish": "./nullish/index.js",
113
+ "./number": "./number/index.js",
114
+ "./object": "./object/index.js",
115
+ "./promise": "./promise/index.js",
116
+ "./queue": "./queue/index.js",
117
+ "./random": "./random/index.js",
118
+ "./regex": "./regex/index.js",
119
+ "./rmemo": "./rmemo/index.js",
120
+ "./run": "./run/index.js",
121
+ "./set": "./set/index.js",
122
+ "./sleep": "./sleep/index.js",
123
+ "./string": "./string/index.js",
124
+ "./tempfile": "./tempfile/index.js",
125
+ "./test": "./test/index.js",
126
+ "./time": "./time/index.js",
127
+ "./tuple": "./tuple/index.js",
128
+ "./types": "./types/index.js",
129
+ "./uri": "./uri/index.js",
130
+ "./uuid": "./uuid/index.js",
131
+ "./package.json": "./package.json"
132
+ },
133
+ "devDependencies": {
134
+ "@arethetypeswrong/cli": "^0.13.5",
135
+ "@ctx-core/preprocess": "^0.1.0",
136
+ "@size-limit/preset-small-lib": "^11.0.1",
137
+ "@types/node": "^20.11.2",
138
+ "@types/sinon": "^17.0.3",
139
+ "c8": "^9.1.0",
140
+ "check-dts": "^0.7.2",
141
+ "esbuild": "^0.19.11",
142
+ "esmock": "^2.6.2",
143
+ "sinon": "^17.0.1",
144
+ "size-limit": "^11.0.1",
145
+ "tsx": "^4.7.0",
146
+ "typescript": "next",
147
+ "uvu": "^0.5.6"
148
+ },
149
+ "publishConfig": {
150
+ "access": "public",
151
+ "cache": "~/.npm"
152
+ },
153
+ "sideEffects": false,
154
+ "size-limit": [
155
+ {
156
+ "name": "ctx_",
157
+ "import": {
158
+ "./be": "{ ctx_ }"
159
+ },
160
+ "limit": "33 B"
161
+ },
162
+ {
163
+ "name": "ns_ctx_",
164
+ "import": {
165
+ "./be": "{ ns_ctx_ }"
166
+ },
167
+ "limit": "85 B"
168
+ },
169
+ {
170
+ "name": "be_",
171
+ "import": {
172
+ "./be": "{ be_ }"
173
+ },
174
+ "limit": "99 B"
175
+ },
176
+ {
177
+ "name": "be_ ctx_",
178
+ "import": {
179
+ "./be": "{ be_, ctx_ }"
180
+ },
181
+ "limit": "131 B"
182
+ },
183
+ {
184
+ "name": "be_ ns_ctx_",
185
+ "import": {
186
+ "./be": "{ be_, ctx_, ns_ctx_ }"
187
+ },
188
+ "limit": "190 B"
189
+ },
190
+ {
191
+ "name": "be_ ctx_ ns_ctx_",
192
+ "import": {
193
+ "./be": "{ be_, ctx_, ns_ctx_ }"
194
+ },
195
+ "limit": "190 B"
196
+ },
197
+ {
198
+ "name": "memo_",
199
+ "import": {
200
+ "./rmemo": "{ memo_ }"
201
+ },
202
+ "limit": "352 B"
203
+ },
204
+ {
205
+ "name": "memo_ sig_",
206
+ "import": {
207
+ "./rmemo": "{ sig_, memo_ }"
208
+ },
209
+ "limit": "370 B"
210
+ },
211
+ {
212
+ "name": "memo_ sig_ be_ ctx_",
213
+ "import": {
214
+ "./rmemo": "{ sig_, memo_, be_, ctx_ }"
215
+ },
216
+ "limit": "471 B"
217
+ },
218
+ {
219
+ "name": "memo_ sig_ be_ ctx_ be_memo_pair_ be_sig_triple_",
220
+ "import": {
221
+ "./rmemo": "{ sig_, memo_, be_, ctx_, be_memo_pair_, be_sig_triple_ }"
222
+ },
223
+ "limit": "576 B"
224
+ },
225
+ {
226
+ "name": "uuid",
227
+ "import": {
228
+ "./uuid": "{ uuid_ }"
229
+ },
230
+ "limit": "39 B"
231
+ },
232
+ {
233
+ "name": "short uuid",
234
+ "import": {
235
+ "./uuid": "{ short_uuid_ }"
236
+ },
237
+ "limit": "116 B"
238
+ }
239
+ ],
240
+ "scripts": {
241
+ "build": ":",
242
+ "clean": ":",
243
+ "exec": "$@",
244
+ "test": "pnpm run /^test:/",
245
+ "test:size": "size-limit",
246
+ "test:type": "check-dts",
247
+ "test:unit": "NODE_OPTIONS=--loader=esmock tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
248
+ "disable:test:coverage": "c8 pnpm test:unit"
249
+ }
251
250
  }