@thi.ng/transducers 9.6.10 → 9.6.15

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/package.json +612 -612
  2. package/CHANGELOG.md +0 -201
package/package.json CHANGED
@@ -1,613 +1,613 @@
1
1
  {
2
- "name": "@thi.ng/transducers",
3
- "version": "9.6.10",
4
- "description": "Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations",
5
- "type": "module",
6
- "module": "./index.js",
7
- "typings": "./index.d.ts",
8
- "sideEffects": false,
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/thi-ng/umbrella.git"
12
- },
13
- "homepage": "https://thi.ng/transducers",
14
- "funding": [
15
- {
16
- "type": "github",
17
- "url": "https://github.com/sponsors/postspectacular"
18
- },
19
- {
20
- "type": "patreon",
21
- "url": "https://patreon.com/thing_umbrella"
22
- },
23
- {
24
- "type": "liberapay",
25
- "url": "https://liberapay.com/thi.ng"
26
- }
27
- ],
28
- "author": "Karsten Schmidt (https://thi.ng)",
29
- "contributors": [
30
- "Gavin Cannizzaro (https://github.com/gavinpc-mindgrub)",
31
- "@nkint (https://github.com/nkint)"
32
- ],
33
- "license": "Apache-2.0",
34
- "scripts": {
35
- "build": "yarn build:esbuild && yarn build:decl",
36
- "build:decl": "tsc --declaration --emitDeclarationOnly",
37
- "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
38
- "clean": "bun ../../tools/src/clean-package.ts",
39
- "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
40
- "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
41
- "pub": "yarn npm publish --access public",
42
- "test": "bun test",
43
- "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
44
- },
45
- "dependencies": {
46
- "@thi.ng/api": "^8.12.2",
47
- "@thi.ng/arrays": "^2.13.11",
48
- "@thi.ng/checks": "^3.7.18",
49
- "@thi.ng/compare": "^2.4.28",
50
- "@thi.ng/compose": "^3.0.39",
51
- "@thi.ng/errors": "^2.5.42",
52
- "@thi.ng/math": "^5.12.0",
53
- "@thi.ng/random": "^4.1.27",
54
- "@thi.ng/timestamp": "^1.1.21"
55
- },
56
- "devDependencies": {
57
- "esbuild": "^0.25.9",
58
- "typedoc": "^0.28.12",
59
- "typescript": "^5.9.2"
60
- },
61
- "keywords": [
62
- "1d",
63
- "2d",
64
- "3d",
65
- "array",
66
- "benchmark",
67
- "clojure",
68
- "composition",
69
- "convolution",
70
- "cycle",
71
- "filter",
72
- "flatten",
73
- "frequency",
74
- "functional",
75
- "fuzzy",
76
- "generator",
77
- "group",
78
- "histogram",
79
- "interleave",
80
- "interpolation",
81
- "iterator",
82
- "kernel",
83
- "nd",
84
- "partition",
85
- "permutation",
86
- "pipeline",
87
- "random",
88
- "range",
89
- "reducer",
90
- "sample",
91
- "set",
92
- "sliding-window",
93
- "stream",
94
- "throttle",
95
- "time",
96
- "transducer",
97
- "transformation",
98
- "tween",
99
- "typescript",
100
- "wordwrap"
101
- ],
102
- "publishConfig": {
103
- "access": "public"
104
- },
105
- "engines": {
106
- "node": ">=18"
107
- },
108
- "files": [
109
- "./*.js",
110
- "./*.d.ts",
111
- "internal"
112
- ],
113
- "exports": {
114
- ".": {
115
- "default": "./index.js"
116
- },
117
- "./add": {
118
- "default": "./add.js"
119
- },
120
- "./api": {
121
- "default": "./api.js"
122
- },
123
- "./as-iterable": {
124
- "default": "./as-iterable.js"
125
- },
126
- "./assoc-map": {
127
- "default": "./assoc-map.js"
128
- },
129
- "./assoc-obj": {
130
- "default": "./assoc-obj.js"
131
- },
132
- "./auto-obj": {
133
- "default": "./auto-obj.js"
134
- },
135
- "./benchmark": {
136
- "default": "./benchmark.js"
137
- },
138
- "./binned": {
139
- "default": "./binned.js"
140
- },
141
- "./cat": {
142
- "default": "./cat.js"
143
- },
144
- "./choices": {
145
- "default": "./choices.js"
146
- },
147
- "./comp": {
148
- "default": "./comp.js"
149
- },
150
- "./compr": {
151
- "default": "./compr.js"
152
- },
153
- "./concat": {
154
- "default": "./concat.js"
155
- },
156
- "./conj": {
157
- "default": "./conj.js"
158
- },
159
- "./consume": {
160
- "default": "./consume.js"
161
- },
162
- "./converge": {
163
- "default": "./converge.js"
164
- },
165
- "./convolve": {
166
- "default": "./convolve.js"
167
- },
168
- "./count": {
169
- "default": "./count.js"
170
- },
171
- "./curve": {
172
- "default": "./curve.js"
173
- },
174
- "./cycle": {
175
- "default": "./cycle.js"
176
- },
177
- "./dedupe": {
178
- "default": "./dedupe.js"
179
- },
180
- "./deep-transform": {
181
- "default": "./deep-transform.js"
182
- },
183
- "./delayed": {
184
- "default": "./delayed.js"
185
- },
186
- "./distinct": {
187
- "default": "./distinct.js"
188
- },
189
- "./div": {
190
- "default": "./div.js"
191
- },
192
- "./drop-nth": {
193
- "default": "./drop-nth.js"
194
- },
195
- "./drop-while": {
196
- "default": "./drop-while.js"
197
- },
198
- "./drop": {
199
- "default": "./drop.js"
200
- },
201
- "./dup": {
202
- "default": "./dup.js"
203
- },
204
- "./duplicate": {
205
- "default": "./duplicate.js"
206
- },
207
- "./ensure": {
208
- "default": "./ensure.js"
209
- },
210
- "./every": {
211
- "default": "./every.js"
212
- },
213
- "./extend-sides": {
214
- "default": "./extend-sides.js"
215
- },
216
- "./fill": {
217
- "default": "./fill.js"
218
- },
219
- "./filter-fuzzy": {
220
- "default": "./filter-fuzzy.js"
221
- },
222
- "./filter": {
223
- "default": "./filter.js"
224
- },
225
- "./flatten-with": {
226
- "default": "./flatten-with.js"
227
- },
228
- "./flatten": {
229
- "default": "./flatten.js"
230
- },
231
- "./flatten1": {
232
- "default": "./flatten1.js"
233
- },
234
- "./frequencies": {
235
- "default": "./frequencies.js"
236
- },
237
- "./group-binary": {
238
- "default": "./group-binary.js"
239
- },
240
- "./group-by-map": {
241
- "default": "./group-by-map.js"
242
- },
243
- "./group-by-obj": {
244
- "default": "./group-by-obj.js"
245
- },
246
- "./indexed": {
247
- "default": "./indexed.js"
248
- },
249
- "./interleave": {
250
- "default": "./interleave.js"
251
- },
252
- "./interpolate-hermite": {
253
- "default": "./interpolate-hermite.js"
254
- },
255
- "./interpolate-linear": {
256
- "default": "./interpolate-linear.js"
257
- },
258
- "./interpolate": {
259
- "default": "./interpolate.js"
260
- },
261
- "./interpose": {
262
- "default": "./interpose.js"
263
- },
264
- "./iterate": {
265
- "default": "./iterate.js"
266
- },
267
- "./iterator": {
268
- "default": "./iterator.js"
269
- },
270
- "./join": {
271
- "default": "./join.js"
272
- },
273
- "./juxtr": {
274
- "default": "./juxtr.js"
275
- },
276
- "./keep": {
277
- "default": "./keep.js"
278
- },
279
- "./key-permutations": {
280
- "default": "./key-permutations.js"
281
- },
282
- "./key-selector": {
283
- "default": "./key-selector.js"
284
- },
285
- "./keys": {
286
- "default": "./keys.js"
287
- },
288
- "./labeled": {
289
- "default": "./labeled.js"
290
- },
291
- "./last": {
292
- "default": "./last.js"
293
- },
294
- "./length": {
295
- "default": "./length.js"
296
- },
297
- "./line": {
298
- "default": "./line.js"
299
- },
300
- "./lookup": {
301
- "default": "./lookup.js"
302
- },
303
- "./map-deep": {
304
- "default": "./map-deep.js"
305
- },
306
- "./map-indexed": {
307
- "default": "./map-indexed.js"
308
- },
309
- "./map-keys": {
310
- "default": "./map-keys.js"
311
- },
312
- "./map-nth": {
313
- "default": "./map-nth.js"
314
- },
315
- "./map-vals": {
316
- "default": "./map-vals.js"
317
- },
318
- "./map": {
319
- "default": "./map.js"
320
- },
321
- "./mapcat-indexed": {
322
- "default": "./mapcat-indexed.js"
323
- },
324
- "./mapcat": {
325
- "default": "./mapcat.js"
326
- },
327
- "./match-first": {
328
- "default": "./match-first.js"
329
- },
330
- "./match-last": {
331
- "default": "./match-last.js"
332
- },
333
- "./max-compare": {
334
- "default": "./max-compare.js"
335
- },
336
- "./max-mag": {
337
- "default": "./max-mag.js"
338
- },
339
- "./max": {
340
- "default": "./max.js"
341
- },
342
- "./mean": {
343
- "default": "./mean.js"
344
- },
345
- "./min-compare": {
346
- "default": "./min-compare.js"
347
- },
348
- "./min-mag": {
349
- "default": "./min-mag.js"
350
- },
351
- "./min-max": {
352
- "default": "./min-max.js"
353
- },
354
- "./min": {
355
- "default": "./min.js"
356
- },
357
- "./moving-average": {
358
- "default": "./moving-average.js"
359
- },
360
- "./moving-median": {
361
- "default": "./moving-median.js"
362
- },
363
- "./mul": {
364
- "default": "./mul.js"
365
- },
366
- "./multiplex-obj": {
367
- "default": "./multiplex-obj.js"
368
- },
369
- "./multiplex": {
370
- "default": "./multiplex.js"
371
- },
372
- "./noop": {
373
- "default": "./noop.js"
374
- },
375
- "./norm-count": {
376
- "default": "./norm-count.js"
377
- },
378
- "./norm-frequencies-auto": {
379
- "default": "./norm-frequencies-auto.js"
380
- },
381
- "./norm-frequencies": {
382
- "default": "./norm-frequencies.js"
383
- },
384
- "./norm-range": {
385
- "default": "./norm-range.js"
386
- },
387
- "./pad-last": {
388
- "default": "./pad-last.js"
389
- },
390
- "./pad-sides": {
391
- "default": "./pad-sides.js"
392
- },
393
- "./page": {
394
- "default": "./page.js"
395
- },
396
- "./pairs": {
397
- "default": "./pairs.js"
398
- },
399
- "./palindrome": {
400
- "default": "./palindrome.js"
401
- },
402
- "./partition-by": {
403
- "default": "./partition-by.js"
404
- },
405
- "./partition-of": {
406
- "default": "./partition-of.js"
407
- },
408
- "./partition-sort": {
409
- "default": "./partition-sort.js"
410
- },
411
- "./partition-sync": {
412
- "default": "./partition-sync.js"
413
- },
414
- "./partition-time": {
415
- "default": "./partition-time.js"
416
- },
417
- "./partition-when": {
418
- "default": "./partition-when.js"
419
- },
420
- "./partition": {
421
- "default": "./partition.js"
422
- },
423
- "./peek": {
424
- "default": "./peek.js"
425
- },
426
- "./permutations": {
427
- "default": "./permutations.js"
428
- },
429
- "./pluck": {
430
- "default": "./pluck.js"
431
- },
432
- "./push-copy": {
433
- "default": "./push-copy.js"
434
- },
435
- "./push-keys": {
436
- "default": "./push-keys.js"
437
- },
438
- "./push-sort": {
439
- "default": "./push-sort.js"
440
- },
441
- "./push": {
442
- "default": "./push.js"
443
- },
444
- "./range-nd": {
445
- "default": "./range-nd.js"
446
- },
447
- "./range": {
448
- "default": "./range.js"
449
- },
450
- "./range2d": {
451
- "default": "./range2d.js"
452
- },
453
- "./range3d": {
454
- "default": "./range3d.js"
455
- },
456
- "./rechunk": {
457
- "default": "./rechunk.js"
458
- },
459
- "./reduce": {
460
- "default": "./reduce.js"
461
- },
462
- "./reduced": {
463
- "default": "./reduced.js"
464
- },
465
- "./reductions": {
466
- "default": "./reductions.js"
467
- },
468
- "./rename": {
469
- "default": "./rename.js"
470
- },
471
- "./renamer": {
472
- "default": "./renamer.js"
473
- },
474
- "./repeat": {
475
- "default": "./repeat.js"
476
- },
477
- "./repeatedly": {
478
- "default": "./repeatedly.js"
479
- },
480
- "./repeatedly2d": {
481
- "default": "./repeatedly2d.js"
482
- },
483
- "./repeatedly3d": {
484
- "default": "./repeatedly3d.js"
485
- },
486
- "./reverse": {
487
- "default": "./reverse.js"
488
- },
489
- "./run": {
490
- "default": "./run.js"
491
- },
492
- "./sample": {
493
- "default": "./sample.js"
494
- },
495
- "./scan": {
496
- "default": "./scan.js"
497
- },
498
- "./select-keys": {
499
- "default": "./select-keys.js"
500
- },
501
- "./side-effect": {
502
- "default": "./side-effect.js"
503
- },
504
- "./sliding-window": {
505
- "default": "./sliding-window.js"
506
- },
507
- "./some": {
508
- "default": "./some.js"
509
- },
510
- "./sorted-frequencies": {
511
- "default": "./sorted-frequencies.js"
512
- },
513
- "./sorted-keys": {
514
- "default": "./sorted-keys.js"
515
- },
516
- "./step": {
517
- "default": "./step.js"
518
- },
519
- "./str": {
520
- "default": "./str.js"
521
- },
522
- "./stream-shuffle": {
523
- "default": "./stream-shuffle.js"
524
- },
525
- "./stream-sort": {
526
- "default": "./stream-sort.js"
527
- },
528
- "./struct": {
529
- "default": "./struct.js"
530
- },
531
- "./sub": {
532
- "default": "./sub.js"
533
- },
534
- "./swizzle": {
535
- "default": "./swizzle.js"
536
- },
537
- "./symmetric": {
538
- "default": "./symmetric.js"
539
- },
540
- "./sync-tuples": {
541
- "default": "./sync-tuples.js"
542
- },
543
- "./take-last": {
544
- "default": "./take-last.js"
545
- },
546
- "./take-nth": {
547
- "default": "./take-nth.js"
548
- },
549
- "./take-while": {
550
- "default": "./take-while.js"
551
- },
552
- "./take": {
553
- "default": "./take.js"
554
- },
555
- "./throttle-time": {
556
- "default": "./throttle-time.js"
557
- },
558
- "./throttle": {
559
- "default": "./throttle.js"
560
- },
561
- "./toggle": {
562
- "default": "./toggle.js"
563
- },
564
- "./trace": {
565
- "default": "./trace.js"
566
- },
567
- "./transduce": {
568
- "default": "./transduce.js"
569
- },
570
- "./tween": {
571
- "default": "./tween.js"
572
- },
573
- "./vals": {
574
- "default": "./vals.js"
575
- },
576
- "./word-wrap": {
577
- "default": "./word-wrap.js"
578
- },
579
- "./wrap-sides": {
580
- "default": "./wrap-sides.js"
581
- },
582
- "./zip": {
583
- "default": "./zip.js"
584
- }
585
- },
586
- "thi.ng": {
587
- "alias": "tx",
588
- "blog": [
589
- {
590
- "title": "HOFs, Transducers, Reducers",
591
- "url": "https://medium.com/@thi.ng/of-umbrellas-transducers-reactive-streams-mushrooms-pt-2-9c540beb0023"
592
- },
593
- {
594
- "title": "Convolution, 1D/2D Cellular automata",
595
- "url": "https://medium.com/@thi.ng/of-umbrellas-transducers-reactive-streams-mushrooms-pt-3-a1c4e621db9b"
596
- },
597
- {
598
- "title": "Disjoint Sets, Graph analysis, Signed Distance Fields",
599
- "url": "https://medium.com/@thi.ng/of-umbrellas-transducers-reactive-streams-mushrooms-pt-4-62d8e71e5603"
600
- }
601
- ],
602
- "related": [
603
- "csv",
604
- "grid-iterators",
605
- "rstream",
606
- "rstream-graph",
607
- "rstream-log",
608
- "sax"
609
- ],
610
- "year": 2016
611
- },
612
- "gitHead": "b7ede4f099767e0175ea8e09257208f73970b220\n"
613
- }
2
+ "name": "@thi.ng/transducers",
3
+ "version": "9.6.15",
4
+ "description": "Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations",
5
+ "type": "module",
6
+ "module": "./index.js",
7
+ "typings": "./index.d.ts",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/thi-ng/umbrella.git"
12
+ },
13
+ "homepage": "https://thi.ng/transducers",
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/postspectacular"
18
+ },
19
+ {
20
+ "type": "patreon",
21
+ "url": "https://patreon.com/thing_umbrella"
22
+ },
23
+ {
24
+ "type": "liberapay",
25
+ "url": "https://liberapay.com/thi.ng"
26
+ }
27
+ ],
28
+ "author": "Karsten Schmidt (https://thi.ng)",
29
+ "contributors": [
30
+ "Gavin Cannizzaro (https://github.com/gavinpc-mindgrub)",
31
+ "@nkint (https://github.com/nkint)"
32
+ ],
33
+ "license": "Apache-2.0",
34
+ "scripts": {
35
+ "build": "yarn build:esbuild && yarn build:decl",
36
+ "build:decl": "tsc --declaration --emitDeclarationOnly",
37
+ "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
38
+ "clean": "bun ../../tools/src/clean-package.ts",
39
+ "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
40
+ "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
41
+ "pub": "npm publish --access public",
42
+ "test": "bun test",
43
+ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
44
+ },
45
+ "dependencies": {
46
+ "@thi.ng/api": "^8.12.7",
47
+ "@thi.ng/arrays": "^2.13.16",
48
+ "@thi.ng/checks": "^3.7.23",
49
+ "@thi.ng/compare": "^2.4.33",
50
+ "@thi.ng/compose": "^3.0.44",
51
+ "@thi.ng/errors": "^2.5.47",
52
+ "@thi.ng/math": "^5.13.4",
53
+ "@thi.ng/random": "^4.1.32",
54
+ "@thi.ng/timestamp": "^1.1.26"
55
+ },
56
+ "devDependencies": {
57
+ "esbuild": "^0.25.11",
58
+ "typedoc": "^0.28.14",
59
+ "typescript": "^5.9.3"
60
+ },
61
+ "keywords": [
62
+ "1d",
63
+ "2d",
64
+ "3d",
65
+ "array",
66
+ "benchmark",
67
+ "clojure",
68
+ "composition",
69
+ "convolution",
70
+ "cycle",
71
+ "filter",
72
+ "flatten",
73
+ "frequency",
74
+ "functional",
75
+ "fuzzy",
76
+ "generator",
77
+ "group",
78
+ "histogram",
79
+ "interleave",
80
+ "interpolation",
81
+ "iterator",
82
+ "kernel",
83
+ "nd",
84
+ "partition",
85
+ "permutation",
86
+ "pipeline",
87
+ "random",
88
+ "range",
89
+ "reducer",
90
+ "sample",
91
+ "set",
92
+ "sliding-window",
93
+ "stream",
94
+ "throttle",
95
+ "time",
96
+ "transducer",
97
+ "transformation",
98
+ "tween",
99
+ "typescript",
100
+ "wordwrap"
101
+ ],
102
+ "publishConfig": {
103
+ "access": "public"
104
+ },
105
+ "engines": {
106
+ "node": ">=18"
107
+ },
108
+ "files": [
109
+ "./*.js",
110
+ "./*.d.ts",
111
+ "internal"
112
+ ],
113
+ "exports": {
114
+ ".": {
115
+ "default": "./index.js"
116
+ },
117
+ "./add": {
118
+ "default": "./add.js"
119
+ },
120
+ "./api": {
121
+ "default": "./api.js"
122
+ },
123
+ "./as-iterable": {
124
+ "default": "./as-iterable.js"
125
+ },
126
+ "./assoc-map": {
127
+ "default": "./assoc-map.js"
128
+ },
129
+ "./assoc-obj": {
130
+ "default": "./assoc-obj.js"
131
+ },
132
+ "./auto-obj": {
133
+ "default": "./auto-obj.js"
134
+ },
135
+ "./benchmark": {
136
+ "default": "./benchmark.js"
137
+ },
138
+ "./binned": {
139
+ "default": "./binned.js"
140
+ },
141
+ "./cat": {
142
+ "default": "./cat.js"
143
+ },
144
+ "./choices": {
145
+ "default": "./choices.js"
146
+ },
147
+ "./comp": {
148
+ "default": "./comp.js"
149
+ },
150
+ "./compr": {
151
+ "default": "./compr.js"
152
+ },
153
+ "./concat": {
154
+ "default": "./concat.js"
155
+ },
156
+ "./conj": {
157
+ "default": "./conj.js"
158
+ },
159
+ "./consume": {
160
+ "default": "./consume.js"
161
+ },
162
+ "./converge": {
163
+ "default": "./converge.js"
164
+ },
165
+ "./convolve": {
166
+ "default": "./convolve.js"
167
+ },
168
+ "./count": {
169
+ "default": "./count.js"
170
+ },
171
+ "./curve": {
172
+ "default": "./curve.js"
173
+ },
174
+ "./cycle": {
175
+ "default": "./cycle.js"
176
+ },
177
+ "./dedupe": {
178
+ "default": "./dedupe.js"
179
+ },
180
+ "./deep-transform": {
181
+ "default": "./deep-transform.js"
182
+ },
183
+ "./delayed": {
184
+ "default": "./delayed.js"
185
+ },
186
+ "./distinct": {
187
+ "default": "./distinct.js"
188
+ },
189
+ "./div": {
190
+ "default": "./div.js"
191
+ },
192
+ "./drop-nth": {
193
+ "default": "./drop-nth.js"
194
+ },
195
+ "./drop-while": {
196
+ "default": "./drop-while.js"
197
+ },
198
+ "./drop": {
199
+ "default": "./drop.js"
200
+ },
201
+ "./dup": {
202
+ "default": "./dup.js"
203
+ },
204
+ "./duplicate": {
205
+ "default": "./duplicate.js"
206
+ },
207
+ "./ensure": {
208
+ "default": "./ensure.js"
209
+ },
210
+ "./every": {
211
+ "default": "./every.js"
212
+ },
213
+ "./extend-sides": {
214
+ "default": "./extend-sides.js"
215
+ },
216
+ "./fill": {
217
+ "default": "./fill.js"
218
+ },
219
+ "./filter-fuzzy": {
220
+ "default": "./filter-fuzzy.js"
221
+ },
222
+ "./filter": {
223
+ "default": "./filter.js"
224
+ },
225
+ "./flatten-with": {
226
+ "default": "./flatten-with.js"
227
+ },
228
+ "./flatten": {
229
+ "default": "./flatten.js"
230
+ },
231
+ "./flatten1": {
232
+ "default": "./flatten1.js"
233
+ },
234
+ "./frequencies": {
235
+ "default": "./frequencies.js"
236
+ },
237
+ "./group-binary": {
238
+ "default": "./group-binary.js"
239
+ },
240
+ "./group-by-map": {
241
+ "default": "./group-by-map.js"
242
+ },
243
+ "./group-by-obj": {
244
+ "default": "./group-by-obj.js"
245
+ },
246
+ "./indexed": {
247
+ "default": "./indexed.js"
248
+ },
249
+ "./interleave": {
250
+ "default": "./interleave.js"
251
+ },
252
+ "./interpolate-hermite": {
253
+ "default": "./interpolate-hermite.js"
254
+ },
255
+ "./interpolate-linear": {
256
+ "default": "./interpolate-linear.js"
257
+ },
258
+ "./interpolate": {
259
+ "default": "./interpolate.js"
260
+ },
261
+ "./interpose": {
262
+ "default": "./interpose.js"
263
+ },
264
+ "./iterate": {
265
+ "default": "./iterate.js"
266
+ },
267
+ "./iterator": {
268
+ "default": "./iterator.js"
269
+ },
270
+ "./join": {
271
+ "default": "./join.js"
272
+ },
273
+ "./juxtr": {
274
+ "default": "./juxtr.js"
275
+ },
276
+ "./keep": {
277
+ "default": "./keep.js"
278
+ },
279
+ "./key-permutations": {
280
+ "default": "./key-permutations.js"
281
+ },
282
+ "./key-selector": {
283
+ "default": "./key-selector.js"
284
+ },
285
+ "./keys": {
286
+ "default": "./keys.js"
287
+ },
288
+ "./labeled": {
289
+ "default": "./labeled.js"
290
+ },
291
+ "./last": {
292
+ "default": "./last.js"
293
+ },
294
+ "./length": {
295
+ "default": "./length.js"
296
+ },
297
+ "./line": {
298
+ "default": "./line.js"
299
+ },
300
+ "./lookup": {
301
+ "default": "./lookup.js"
302
+ },
303
+ "./map-deep": {
304
+ "default": "./map-deep.js"
305
+ },
306
+ "./map-indexed": {
307
+ "default": "./map-indexed.js"
308
+ },
309
+ "./map-keys": {
310
+ "default": "./map-keys.js"
311
+ },
312
+ "./map-nth": {
313
+ "default": "./map-nth.js"
314
+ },
315
+ "./map-vals": {
316
+ "default": "./map-vals.js"
317
+ },
318
+ "./map": {
319
+ "default": "./map.js"
320
+ },
321
+ "./mapcat-indexed": {
322
+ "default": "./mapcat-indexed.js"
323
+ },
324
+ "./mapcat": {
325
+ "default": "./mapcat.js"
326
+ },
327
+ "./match-first": {
328
+ "default": "./match-first.js"
329
+ },
330
+ "./match-last": {
331
+ "default": "./match-last.js"
332
+ },
333
+ "./max-compare": {
334
+ "default": "./max-compare.js"
335
+ },
336
+ "./max-mag": {
337
+ "default": "./max-mag.js"
338
+ },
339
+ "./max": {
340
+ "default": "./max.js"
341
+ },
342
+ "./mean": {
343
+ "default": "./mean.js"
344
+ },
345
+ "./min-compare": {
346
+ "default": "./min-compare.js"
347
+ },
348
+ "./min-mag": {
349
+ "default": "./min-mag.js"
350
+ },
351
+ "./min-max": {
352
+ "default": "./min-max.js"
353
+ },
354
+ "./min": {
355
+ "default": "./min.js"
356
+ },
357
+ "./moving-average": {
358
+ "default": "./moving-average.js"
359
+ },
360
+ "./moving-median": {
361
+ "default": "./moving-median.js"
362
+ },
363
+ "./mul": {
364
+ "default": "./mul.js"
365
+ },
366
+ "./multiplex-obj": {
367
+ "default": "./multiplex-obj.js"
368
+ },
369
+ "./multiplex": {
370
+ "default": "./multiplex.js"
371
+ },
372
+ "./noop": {
373
+ "default": "./noop.js"
374
+ },
375
+ "./norm-count": {
376
+ "default": "./norm-count.js"
377
+ },
378
+ "./norm-frequencies-auto": {
379
+ "default": "./norm-frequencies-auto.js"
380
+ },
381
+ "./norm-frequencies": {
382
+ "default": "./norm-frequencies.js"
383
+ },
384
+ "./norm-range": {
385
+ "default": "./norm-range.js"
386
+ },
387
+ "./pad-last": {
388
+ "default": "./pad-last.js"
389
+ },
390
+ "./pad-sides": {
391
+ "default": "./pad-sides.js"
392
+ },
393
+ "./page": {
394
+ "default": "./page.js"
395
+ },
396
+ "./pairs": {
397
+ "default": "./pairs.js"
398
+ },
399
+ "./palindrome": {
400
+ "default": "./palindrome.js"
401
+ },
402
+ "./partition-by": {
403
+ "default": "./partition-by.js"
404
+ },
405
+ "./partition-of": {
406
+ "default": "./partition-of.js"
407
+ },
408
+ "./partition-sort": {
409
+ "default": "./partition-sort.js"
410
+ },
411
+ "./partition-sync": {
412
+ "default": "./partition-sync.js"
413
+ },
414
+ "./partition-time": {
415
+ "default": "./partition-time.js"
416
+ },
417
+ "./partition-when": {
418
+ "default": "./partition-when.js"
419
+ },
420
+ "./partition": {
421
+ "default": "./partition.js"
422
+ },
423
+ "./peek": {
424
+ "default": "./peek.js"
425
+ },
426
+ "./permutations": {
427
+ "default": "./permutations.js"
428
+ },
429
+ "./pluck": {
430
+ "default": "./pluck.js"
431
+ },
432
+ "./push-copy": {
433
+ "default": "./push-copy.js"
434
+ },
435
+ "./push-keys": {
436
+ "default": "./push-keys.js"
437
+ },
438
+ "./push-sort": {
439
+ "default": "./push-sort.js"
440
+ },
441
+ "./push": {
442
+ "default": "./push.js"
443
+ },
444
+ "./range-nd": {
445
+ "default": "./range-nd.js"
446
+ },
447
+ "./range": {
448
+ "default": "./range.js"
449
+ },
450
+ "./range2d": {
451
+ "default": "./range2d.js"
452
+ },
453
+ "./range3d": {
454
+ "default": "./range3d.js"
455
+ },
456
+ "./rechunk": {
457
+ "default": "./rechunk.js"
458
+ },
459
+ "./reduce": {
460
+ "default": "./reduce.js"
461
+ },
462
+ "./reduced": {
463
+ "default": "./reduced.js"
464
+ },
465
+ "./reductions": {
466
+ "default": "./reductions.js"
467
+ },
468
+ "./rename": {
469
+ "default": "./rename.js"
470
+ },
471
+ "./renamer": {
472
+ "default": "./renamer.js"
473
+ },
474
+ "./repeat": {
475
+ "default": "./repeat.js"
476
+ },
477
+ "./repeatedly": {
478
+ "default": "./repeatedly.js"
479
+ },
480
+ "./repeatedly2d": {
481
+ "default": "./repeatedly2d.js"
482
+ },
483
+ "./repeatedly3d": {
484
+ "default": "./repeatedly3d.js"
485
+ },
486
+ "./reverse": {
487
+ "default": "./reverse.js"
488
+ },
489
+ "./run": {
490
+ "default": "./run.js"
491
+ },
492
+ "./sample": {
493
+ "default": "./sample.js"
494
+ },
495
+ "./scan": {
496
+ "default": "./scan.js"
497
+ },
498
+ "./select-keys": {
499
+ "default": "./select-keys.js"
500
+ },
501
+ "./side-effect": {
502
+ "default": "./side-effect.js"
503
+ },
504
+ "./sliding-window": {
505
+ "default": "./sliding-window.js"
506
+ },
507
+ "./some": {
508
+ "default": "./some.js"
509
+ },
510
+ "./sorted-frequencies": {
511
+ "default": "./sorted-frequencies.js"
512
+ },
513
+ "./sorted-keys": {
514
+ "default": "./sorted-keys.js"
515
+ },
516
+ "./step": {
517
+ "default": "./step.js"
518
+ },
519
+ "./str": {
520
+ "default": "./str.js"
521
+ },
522
+ "./stream-shuffle": {
523
+ "default": "./stream-shuffle.js"
524
+ },
525
+ "./stream-sort": {
526
+ "default": "./stream-sort.js"
527
+ },
528
+ "./struct": {
529
+ "default": "./struct.js"
530
+ },
531
+ "./sub": {
532
+ "default": "./sub.js"
533
+ },
534
+ "./swizzle": {
535
+ "default": "./swizzle.js"
536
+ },
537
+ "./symmetric": {
538
+ "default": "./symmetric.js"
539
+ },
540
+ "./sync-tuples": {
541
+ "default": "./sync-tuples.js"
542
+ },
543
+ "./take-last": {
544
+ "default": "./take-last.js"
545
+ },
546
+ "./take-nth": {
547
+ "default": "./take-nth.js"
548
+ },
549
+ "./take-while": {
550
+ "default": "./take-while.js"
551
+ },
552
+ "./take": {
553
+ "default": "./take.js"
554
+ },
555
+ "./throttle-time": {
556
+ "default": "./throttle-time.js"
557
+ },
558
+ "./throttle": {
559
+ "default": "./throttle.js"
560
+ },
561
+ "./toggle": {
562
+ "default": "./toggle.js"
563
+ },
564
+ "./trace": {
565
+ "default": "./trace.js"
566
+ },
567
+ "./transduce": {
568
+ "default": "./transduce.js"
569
+ },
570
+ "./tween": {
571
+ "default": "./tween.js"
572
+ },
573
+ "./vals": {
574
+ "default": "./vals.js"
575
+ },
576
+ "./word-wrap": {
577
+ "default": "./word-wrap.js"
578
+ },
579
+ "./wrap-sides": {
580
+ "default": "./wrap-sides.js"
581
+ },
582
+ "./zip": {
583
+ "default": "./zip.js"
584
+ }
585
+ },
586
+ "thi.ng": {
587
+ "alias": "tx",
588
+ "blog": [
589
+ {
590
+ "title": "HOFs, Transducers, Reducers",
591
+ "url": "https://medium.com/@thi.ng/of-umbrellas-transducers-reactive-streams-mushrooms-pt-2-9c540beb0023"
592
+ },
593
+ {
594
+ "title": "Convolution, 1D/2D Cellular automata",
595
+ "url": "https://medium.com/@thi.ng/of-umbrellas-transducers-reactive-streams-mushrooms-pt-3-a1c4e621db9b"
596
+ },
597
+ {
598
+ "title": "Disjoint Sets, Graph analysis, Signed Distance Fields",
599
+ "url": "https://medium.com/@thi.ng/of-umbrellas-transducers-reactive-streams-mushrooms-pt-4-62d8e71e5603"
600
+ }
601
+ ],
602
+ "related": [
603
+ "csv",
604
+ "grid-iterators",
605
+ "rstream",
606
+ "rstream-graph",
607
+ "rstream-log",
608
+ "sax"
609
+ ],
610
+ "year": 2016
611
+ },
612
+ "gitHead": "d977f819bcafdcb2b24c45f8d01a167fe29fc85a\n"
613
+ }