|
41 | 41 | - [`/packages/it-to-browser-readablestream`](./packages/it-to-browser-readablestream) Takes an async iterator and turns it into a browser readable stream
|
42 | 42 | - [`/packages/it-to-buffer`](./packages/it-to-buffer) Takes an async iterator that yields buffers and concatenates them all together
|
43 | 43 |
|
44 |
| -<!----> |
45 |
| - |
46 |
| -- [blob-to-it](./packages/blob-to-it) Turn a Blob into an iterable |
47 |
| -- [browser-readablestream-to-it](./packages/browser-readablestream-to-it) Turn a browser ReadableStream into an iterable |
48 |
| -- [it-all](./packages/it-all) Collect the contents of an iterable into an array |
49 |
| -- [it-batch](./packages/it-batch) Batch up the contents of an iterable into arrays |
50 |
| -- [it-buffer-stream](./packages/it-buffer-stream) Creates an iterable of buffers |
51 |
| -- [it-drain](./packages/it-drain) Consume an iterable and ignore any output |
52 |
| -- [it-filter](./packages/it-filter) Skip some items in an iterable based on a filter function |
53 |
| -- [it-first](./packages/it-first) Return the first item in an iterable |
54 |
| -- [it-flat-batch](./packages/it-flat-batch) Take an iterable of variable length arrays and make them all the same length |
55 |
| -- [it-foreach](./packages/it-foreach) Invoke a function for every member of an iterable |
56 |
| -- [it-glob](./packages/it-glob) Glob matcher for file systems |
57 |
| -- [it-last](./packages/it-last) Return the last item in an iterable |
58 |
| -- [it-length](./packages/it-length) Consume an iterable and return its length |
59 |
| -- [it-map](./packages/it-map) Map the output of an iterable |
60 |
| -- [it-merge](./packages/it-merge) Treat multiple iterables as one |
61 |
| -- [it-multipart](./packages/it-multipart) Parse multipart message bodies as an iterable |
62 |
| -- [it-ndjson](./packages/it-ndjson) Parse multipart message bodies as an iterable |
63 |
| -- [it-parallel](./packages/it-parallel) Take an iterable of functions that return promises and run them in parallel up to a concurrency limit |
64 |
| -- [it-parallel-batch](./packages/it-parallel-batch) Take an iterable of functions that return promises and run them in parallel in batches |
65 |
| -- [it-peekable](./packages/it-peekable) Peek/push an iterable |
66 |
| -- [it-reduce](./packages/it-reduce) Reduce the output of an iterable |
67 |
| -- [it-skip](./packages/it-skip) Skip items at the start of an iterable |
68 |
| -- [it-sort](./packages/it-sort) Sort an iterable using a passed sort function |
69 |
| -- [it-split](./packages/it-split) Split an iterable of buffers by linebreaks |
70 |
| -- [it-take](./packages/it-take) Limit the number of items you want from an iterable |
71 |
| -- [it-to-browser-readablestream](./packages/it-to-browser-readablestream) Turns an iterable into a WhatWG [ReadableStream](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream) |
72 |
| -- [it-to-buffer](./packages/it-to-buffer) Takes an iterable of Buffers and concatenates them |
73 |
| - |
74 | 44 | ## License
|
75 | 45 |
|
76 | 46 | Licensed under either of
|
|
0 commit comments