Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 21, 2024
1 parent 9c47870 commit eb5c461
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 27 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-09-19)
## Unreleased (2024-09-21)

<section class="packages">

Expand Down Expand Up @@ -85,9 +85,10 @@

### Contributors

A total of 1 person contributed to this release. Thank you to this contributor:
A total of 2 people contributed to this release. Thank you to the following contributors:

- Athan Reines
- Philipp Burckhardt

</section>

Expand All @@ -99,6 +100,7 @@ A total of 1 person contributed to this release. Thank you to this contributor:

<details>

- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
- [`2eded73`](https://github.com/stdlib-js/stdlib/commit/2eded73655c7d803cdbdce88d38af9bc5aab42b0) - **feat:** add `base64ToUint8Array` to namespace _(by Athan Reines)_
- [`09e7120`](https://github.com/stdlib-js/stdlib/commit/09e71201868eaa8fb1c003c4de270b4002fa900c) - **feat:** add `string/base/base64-to-uint8array` _(by Athan Reines)_
- [`f200857`](https://github.com/stdlib-js/stdlib/commit/f2008570f57d9bdaec78ec212fe91858f68cf3ac) - **chore:** fix copyright year _(by Athan Reines)_
Expand Down
6 changes: 3 additions & 3 deletions base/for-each-code-point-right/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

When invoked, the provided function is provided three arguments:

- value: code point
- index: starting code point index
- str: input string
- value: code point.
- index: starting code point index.
- str: input string.

Parameters
----------
Expand Down
6 changes: 3 additions & 3 deletions base/for-each-code-point/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

When invoked, the provided function is provided three arguments:

- value: code point
- index: starting code point index
- str: input string
- value: code point.
- index: starting code point index.
- str: input string.

Parameters
----------
Expand Down
6 changes: 3 additions & 3 deletions base/for-each-grapheme-cluster/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

When invoked, the provided function is provided three arguments:

- value: grapheme cluster
- index: starting grapheme cluster index
- str: input string
- value: grapheme cluster.
- index: starting grapheme cluster index.
- str: input string.

Parameters
----------
Expand Down
8 changes: 4 additions & 4 deletions base/for-each-right/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

{{alias}}( str, clbk[, thisArg] )
Invokes a function for each UTF-16 code unit in a string, iterating from
Invokes a function for each UTF-16 code unit in a string, iterating from
right to left.

When invoked, the provided function is provided three arguments:

- value: character
- index: character index
- str: input string
- value: character.
- index: character index.
- str: input string.

Parameters
----------
Expand Down
6 changes: 3 additions & 3 deletions base/for-each/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

When invoked, the provided function is provided three arguments:

- value: character
- index: character index
- str: input string
- value: character.
- index: character index.
- str: input string.

Parameters
----------
Expand Down
6 changes: 3 additions & 3 deletions for-each/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

When invoked, the provided function is provided three arguments:

- value: character
- index: starting character index
- str: input string
- value: character.
- index: starting character index.
- str: input string.

Parameters
----------
Expand Down
6 changes: 3 additions & 3 deletions to-grapheme-cluster-iterator-right/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

When invoked, an input function is provided three arguments:

- value: grapheme cluster
- index: iterated value index
- src: source string
- value: grapheme cluster.
- index: iterated value index.
- src: source string.

If an environment supports Symbol.iterator, the returned iterator is
iterable.
Expand Down
6 changes: 3 additions & 3 deletions to-grapheme-cluster-iterator/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

When invoked, an input function is provided three arguments:

- value: grapheme cluster
- index: iterated value index
- src: source string
- value: grapheme cluster.
- index: iterated value index.
- src: source string.

If an environment supports Symbol.iterator, the returned iterator is
iterable.
Expand Down

0 comments on commit eb5c461

Please sign in to comment.