Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rename master to main #108

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/js-test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: test & maybe release
on:
push:
branches:
- master
- main
pull_request:
workflow_dispatch:

Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# it <!-- omit in toc -->

[![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

Expand Down Expand Up @@ -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

- <https://achingbrain.github.io/it>

# License

Licensed under either of
Expand Down
6 changes: 5 additions & 1 deletion packages/blob-to-it/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -34,6 +34,10 @@ Loading this module through a script tag will make it's exports available as `Bl
<script src="https://unpkg.com/blob-to-it/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/blob_to_it.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/blob-to-it/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/browser-readablestream-to-it/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -57,6 +57,10 @@ Loading this module through a script tag will make it's exports available as `Br
<script src="https://unpkg.com/browser-readablestream-to-it/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/browser_readablestream_to_it.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/browser-readablestream-to-it/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-all/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -48,6 +48,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-all/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_all.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-all/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-batch/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -52,6 +52,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-batch/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_batch.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-batch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-batched-bytes/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -62,6 +62,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-batched-bytes/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_batched_bytes.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-batched-bytes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-buffer-stream/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -51,6 +51,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-buffer-stream/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_buffer_stream.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-buffer-stream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-byte-stream/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -38,6 +38,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-byte-stream/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_byte_stream.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-byte-stream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-drain/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -44,6 +44,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-drain/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_drain.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-drain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-filter/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -54,6 +54,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-filter/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_filter.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-filter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-first/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -48,6 +48,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-first/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_first.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-first/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-flat-batch/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -52,6 +52,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-flat-batch/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_flat_batch.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-flat-batch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-foreach/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -56,6 +56,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-foreach/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_foreach.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-foreach/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-glob/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -33,6 +33,10 @@ See the [minimatch docs](https://www.npmjs.com/package/minimatch#options) for th
$ npm i it-glob
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_glob.html>

# License

Licensed under either of
Expand Down
2 changes: 1 addition & 1 deletion packages/it-glob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
[
Expand Down
6 changes: 5 additions & 1 deletion packages/it-last/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -48,6 +48,10 @@ Loading this module through a script tag will make it's exports available as `It
<script src="https://unpkg.com/it-last/dist/index.min.js"></script>
```

# API Docs

- <https://achingbrain.github.io/it/modules/it_last.html>

# License

Licensed under either of
Expand Down
Loading