diff --git a/.github/workflows/js-test-and-release.yml b/.github/workflows/js-test-and-release.yml index 2c7a14bb..35d87d10 100644 --- a/.github/workflows/js-test-and-release.yml +++ b/.github/workflows/js-test-and-release.yml @@ -3,7 +3,7 @@ name: test & maybe release on: push: branches: - - master + - main pull_request: workflow_dispatch: diff --git a/README.md b/README.md index d114bde9..f8e0e6f0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # it [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > A collection of utilities for making working with iterables more bearable @@ -39,6 +39,10 @@ - [`/packages/it-to-browser-readablestream`](./packages/it-to-browser-readablestream) Takes an async iterator and turns it into a browser readable stream - [`/packages/it-to-buffer`](./packages/it-to-buffer) Takes an async iterator that yields buffers and concatenates them all together +# API Docs + +- + # License Licensed under either of diff --git a/packages/blob-to-it/README.md b/packages/blob-to-it/README.md index 78a84c01..1ec9acd8 100644 --- a/packages/blob-to-it/README.md +++ b/packages/blob-to-it/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Turns a blob into an async iterator @@ -34,6 +34,10 @@ Loading this module through a script tag will make it's exports available as `Bl ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/blob-to-it/package.json b/packages/blob-to-it/package.json index 7df47c45..8200f73e 100644 --- a/packages/blob-to-it/package.json +++ b/packages/blob-to-it/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/browser-readablestream-to-it/README.md b/packages/browser-readablestream-to-it/README.md index fc723e05..fa24b1c3 100644 --- a/packages/browser-readablestream-to-it/README.md +++ b/packages/browser-readablestream-to-it/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Turns a browser readble stream into an async iterator @@ -57,6 +57,10 @@ Loading this module through a script tag will make it's exports available as `Br ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/browser-readablestream-to-it/package.json b/packages/browser-readablestream-to-it/package.json index 949996d5..e9865a3a 100644 --- a/packages/browser-readablestream-to-it/package.json +++ b/packages/browser-readablestream-to-it/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-all/README.md b/packages/it-all/README.md index 21a472c8..dbaf7d5a 100644 --- a/packages/it-all/README.md +++ b/packages/it-all/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Collects all values from an (async) iterable and returns them as an array @@ -48,6 +48,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-all/package.json b/packages/it-all/package.json index f94329f9..eeb8dd60 100644 --- a/packages/it-all/package.json +++ b/packages/it-all/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-batch/README.md b/packages/it-batch/README.md index 2009d1f2..08beb80b 100644 --- a/packages/it-batch/README.md +++ b/packages/it-batch/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Takes an async iterator that emits things and emits them as fixed size batches @@ -52,6 +52,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-batch/package.json b/packages/it-batch/package.json index cab09f3d..a23c174c 100644 --- a/packages/it-batch/package.json +++ b/packages/it-batch/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-batched-bytes/README.md b/packages/it-batched-bytes/README.md index 8919b6b0..c0f5706b 100644 --- a/packages/it-batched-bytes/README.md +++ b/packages/it-batched-bytes/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Takes an async iterator that emits byte arrays and emits them as fixed size batches @@ -62,6 +62,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-batched-bytes/package.json b/packages/it-batched-bytes/package.json index 5d3bdf66..3c41f2d6 100644 --- a/packages/it-batched-bytes/package.json +++ b/packages/it-batched-bytes/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-buffer-stream/README.md b/packages/it-buffer-stream/README.md index 9ca1ca3f..843887bd 100644 --- a/packages/it-buffer-stream/README.md +++ b/packages/it-buffer-stream/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > An async iterator that emits buffers containing bytes up to a certain length @@ -51,6 +51,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-buffer-stream/package.json b/packages/it-buffer-stream/package.json index 0e9e8d64..05818f7a 100644 --- a/packages/it-buffer-stream/package.json +++ b/packages/it-buffer-stream/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-byte-stream/README.md b/packages/it-byte-stream/README.md index 79daf035..4d179ac9 100644 --- a/packages/it-byte-stream/README.md +++ b/packages/it-byte-stream/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Read and write arbitrary bytes over a duplex stream @@ -38,6 +38,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-byte-stream/package.json b/packages/it-byte-stream/package.json index 8f93cd76..6b9abd52 100644 --- a/packages/it-byte-stream/package.json +++ b/packages/it-byte-stream/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-drain/README.md b/packages/it-drain/README.md index 4a36f9ac..280bb671 100644 --- a/packages/it-drain/README.md +++ b/packages/it-drain/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Empties an async iterator @@ -44,6 +44,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-drain/package.json b/packages/it-drain/package.json index 85a82008..72f2a5de 100644 --- a/packages/it-drain/package.json +++ b/packages/it-drain/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-filter/README.md b/packages/it-filter/README.md index f81f5902..185f88a7 100644 --- a/packages/it-filter/README.md +++ b/packages/it-filter/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Filters the passed iterable by using the filter function @@ -54,6 +54,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-filter/package.json b/packages/it-filter/package.json index 4ce0fd05..4cc8c301 100644 --- a/packages/it-filter/package.json +++ b/packages/it-filter/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-first/README.md b/packages/it-first/README.md index 2943a27e..9178291b 100644 --- a/packages/it-first/README.md +++ b/packages/it-first/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Returns the first result from an async iterator @@ -48,6 +48,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-first/package.json b/packages/it-first/package.json index bbd8a13c..7aef1543 100644 --- a/packages/it-first/package.json +++ b/packages/it-first/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-flat-batch/README.md b/packages/it-flat-batch/README.md index d9b87d11..ac7d766a 100644 --- a/packages/it-flat-batch/README.md +++ b/packages/it-flat-batch/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Takes an async iterator that emits variable length arrays and emits them as fixed size batches @@ -52,6 +52,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-flat-batch/package.json b/packages/it-flat-batch/package.json index fe6ce02b..7bc05098 100644 --- a/packages/it-flat-batch/package.json +++ b/packages/it-flat-batch/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-foreach/README.md b/packages/it-foreach/README.md index c8ce3582..0e1d90f6 100644 --- a/packages/it-foreach/README.md +++ b/packages/it-foreach/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Invokes the passed function for each item in an iterable @@ -56,6 +56,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-foreach/package.json b/packages/it-foreach/package.json index 8d0f1343..af48768d 100644 --- a/packages/it-foreach/package.json +++ b/packages/it-foreach/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-glob/README.md b/packages/it-glob/README.md index ecf82076..cae1c795 100644 --- a/packages/it-glob/README.md +++ b/packages/it-glob/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Async iterable filename pattern matcher @@ -33,6 +33,10 @@ See the [minimatch docs](https://www.npmjs.com/package/minimatch#options) for th $ npm i it-glob ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-glob/package.json b/packages/it-glob/package.json index 12b6e252..7675f7f1 100644 --- a/packages/it-glob/package.json +++ b/packages/it-glob/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-last/README.md b/packages/it-last/README.md index 4265930d..480a6ecb 100644 --- a/packages/it-last/README.md +++ b/packages/it-last/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Returns the last result from an async iterator @@ -48,6 +48,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-last/package.json b/packages/it-last/package.json index e5b3f17a..3e5c6a34 100644 --- a/packages/it-last/package.json +++ b/packages/it-last/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-length-prefixed-stream/README.md b/packages/it-length-prefixed-stream/README.md index f91ba6b9..6b011241 100644 --- a/packages/it-length-prefixed-stream/README.md +++ b/packages/it-length-prefixed-stream/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Read and write length-prefixed byte arrays over a duplex stream @@ -41,6 +41,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-length-prefixed-stream/package.json b/packages/it-length-prefixed-stream/package.json index 512c7b6e..90c6b35e 100644 --- a/packages/it-length-prefixed-stream/package.json +++ b/packages/it-length-prefixed-stream/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-length/README.md b/packages/it-length/README.md index 44ac2431..a60af7b7 100644 --- a/packages/it-length/README.md +++ b/packages/it-length/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Counts the number of items in an async iterable @@ -50,6 +50,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-length/package.json b/packages/it-length/package.json index 0a2113f7..b487032a 100644 --- a/packages/it-length/package.json +++ b/packages/it-length/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-map/README.md b/packages/it-map/README.md index 3c536126..0260efaf 100644 --- a/packages/it-map/README.md +++ b/packages/it-map/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Maps the values yielded by an async iterator @@ -48,6 +48,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-map/package.json b/packages/it-map/package.json index 1e3d9a63..51fc987d 100644 --- a/packages/it-map/package.json +++ b/packages/it-map/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-merge/README.md b/packages/it-merge/README.md index f2a8e307..76a82e78 100644 --- a/packages/it-merge/README.md +++ b/packages/it-merge/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Treat one or more iterables as a single iterable @@ -57,6 +57,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-merge/package.json b/packages/it-merge/package.json index 803303eb..5588631d 100644 --- a/packages/it-merge/package.json +++ b/packages/it-merge/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-multipart/README.md b/packages/it-multipart/README.md index 6185d4d9..91ff9c7c 100644 --- a/packages/it-multipart/README.md +++ b/packages/it-multipart/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Async iterable http multipart message parser @@ -42,6 +42,10 @@ http.createServer(async (req, res) => { $ npm i it-multipart ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-multipart/package.json b/packages/it-multipart/package.json index c7eaae08..8dc09550 100644 --- a/packages/it-multipart/package.json +++ b/packages/it-multipart/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-ndjson/README.md b/packages/it-ndjson/README.md index bf7c4255..b6c1f323 100644 --- a/packages/it-ndjson/README.md +++ b/packages/it-ndjson/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Parse iterators as ndjson and transform iterators to ndjson @@ -39,6 +39,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-ndjson/package.json b/packages/it-ndjson/package.json index 3de0d4f1..b90346ca 100644 --- a/packages/it-ndjson/package.json +++ b/packages/it-ndjson/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-parallel-batch/README.md b/packages/it-parallel-batch/README.md index aab443c4..2b908318 100644 --- a/packages/it-parallel-batch/README.md +++ b/packages/it-parallel-batch/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Process (async)iterable values as functions with concurrency control @@ -56,6 +56,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-parallel-batch/package.json b/packages/it-parallel-batch/package.json index cfe90894..c6af15c0 100644 --- a/packages/it-parallel-batch/package.json +++ b/packages/it-parallel-batch/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-parallel/README.md b/packages/it-parallel/README.md index 100ddfb3..c4e91a9e 100644 --- a/packages/it-parallel/README.md +++ b/packages/it-parallel/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Process incoming async(iterable) functions in parallel @@ -87,6 +87,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-parallel/package.json b/packages/it-parallel/package.json index 2d8c0aad..b259a322 100644 --- a/packages/it-parallel/package.json +++ b/packages/it-parallel/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-peekable/README.md b/packages/it-peekable/README.md index 68f860e2..71c9dcb0 100644 --- a/packages/it-peekable/README.md +++ b/packages/it-peekable/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Allows peeking/pushing an iterable @@ -62,6 +62,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-peekable/package.json b/packages/it-peekable/package.json index 4ac37c59..47455ef9 100644 --- a/packages/it-peekable/package.json +++ b/packages/it-peekable/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-protobuf-stream/README.md b/packages/it-protobuf-stream/README.md index 7540fc73..1256d135 100644 --- a/packages/it-protobuf-stream/README.md +++ b/packages/it-protobuf-stream/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Read and write protobuf messages over a duplex stream @@ -42,6 +42,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-protobuf-stream/package.json b/packages/it-protobuf-stream/package.json index 9e1a33ea..e0581866 100644 --- a/packages/it-protobuf-stream/package.json +++ b/packages/it-protobuf-stream/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-reduce/README.md b/packages/it-reduce/README.md index 064dfd34..0d4ff94a 100644 --- a/packages/it-reduce/README.md +++ b/packages/it-reduce/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Reduces the values yielded from an async iterator @@ -48,6 +48,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-reduce/package.json b/packages/it-reduce/package.json index ef256d19..7af124b0 100644 --- a/packages/it-reduce/package.json +++ b/packages/it-reduce/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-skip/README.md b/packages/it-skip/README.md index d2b03a5c..75b395ee 100644 --- a/packages/it-skip/README.md +++ b/packages/it-skip/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Skip items from an iterable @@ -50,6 +50,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-skip/package.json b/packages/it-skip/package.json index 96568de9..109d0b4c 100644 --- a/packages/it-skip/package.json +++ b/packages/it-skip/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-sort/README.md b/packages/it-sort/README.md index b4162e10..4591f833 100644 --- a/packages/it-sort/README.md +++ b/packages/it-sort/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Collects all values from an async iterator, sorts them using the passed function and yields them @@ -58,6 +58,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-sort/package.json b/packages/it-sort/package.json index a54fcd22..c94e41ac 100644 --- a/packages/it-sort/package.json +++ b/packages/it-sort/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-split/README.md b/packages/it-split/README.md index 12eeaffa..498d3186 100644 --- a/packages/it-split/README.md +++ b/packages/it-split/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Splits Uint8Arrays emitted by an (async) iterable by a delimiter @@ -75,6 +75,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-split/package.json b/packages/it-split/package.json index f358f235..9b50dd60 100644 --- a/packages/it-split/package.json +++ b/packages/it-split/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-take/README.md b/packages/it-take/README.md index 68a16978..e4a274b9 100644 --- a/packages/it-take/README.md +++ b/packages/it-take/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Stop iteration after n items have been received @@ -50,6 +50,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-take/package.json b/packages/it-take/package.json index 3c7538af..f2aaedc8 100644 --- a/packages/it-take/package.json +++ b/packages/it-take/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-to-browser-readablestream/README.md b/packages/it-to-browser-readablestream/README.md index 0eef95ab..113a7793 100644 --- a/packages/it-to-browser-readablestream/README.md +++ b/packages/it-to-browser-readablestream/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Takes an async iterator and turns it into a browser readable stream @@ -36,6 +36,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-to-browser-readablestream/package.json b/packages/it-to-browser-readablestream/package.json index a3dea310..bd522213 100644 --- a/packages/it-to-browser-readablestream/package.json +++ b/packages/it-to-browser-readablestream/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [ diff --git a/packages/it-to-buffer/README.md b/packages/it-to-buffer/README.md index c2b80629..6834167f 100644 --- a/packages/it-to-buffer/README.md +++ b/packages/it-to-buffer/README.md @@ -1,5 +1,5 @@ [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) -[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) +[![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amain) > Takes an async iterator that yields buffers and concatenates them all together @@ -49,6 +49,10 @@ Loading this module through a script tag will make it's exports available as `It ``` +# API Docs + +- + # License Licensed under either of diff --git a/packages/it-to-buffer/package.json b/packages/it-to-buffer/package.json index 316b2161..a56c658d 100644 --- a/packages/it-to-buffer/package.json +++ b/packages/it-to-buffer/package.json @@ -35,7 +35,7 @@ }, "release": { "branches": [ - "master" + "main" ], "plugins": [ [