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 Jan 4, 2025
1 parent 860df4a commit e948085
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 35 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

> Package changelog.
<section class="release" id="unreleased">

## Unreleased (2025-01-04)

<section class="commits">

### Commits

<details>

- [`321e49e`](https://github.com/stdlib-js/stdlib/commit/321e49e9965648f1b5eb6a840fe454959af0ec49) - **docs:** add missing periods to list items _(by Philipp Burckhardt)_

</details>

</section>

<!-- /.commits -->

<section class="contributors">

### Contributors

A total of 1 person contributed to this release. Thank you to this contributor:

- Philipp Burckhardt

</section>

<!-- /.contributors -->

</section>

<!-- /.release -->

<section class="release" id="v0.2.2">

## 0.2.2 (2024-07-27)
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Daniel Killenberger <daniel.killenberger@gmail.com>
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
Debashis Maharana <debashismaharana7854@gmail.com>
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
Dhruv Arvind Singh <154677013+DhruvArvindSingh@users.noreply.github.com>
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
Dominic Lim <46486515+domlimm@users.noreply.github.com>
Dominik Moritz <domoritz@gmail.com>
Expand Down Expand Up @@ -117,7 +118,7 @@ UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com>
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
Varad Gupta <varadgupta21@gmail.com>
Vinit Pandit <106718914+MeastroZI@users.noreply.github.com>
Vivek maurya <155618190+vivekmaurya001@users.noreply.github.com>
Vivek Maurya <vm8118134@gmail.com>
Xiaochuan Ye <tap91624@gmail.com>
Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright (c) 2016-2024 The Stdlib Authors.
Copyright (c) 2016-2025 The Stdlib Authors.
64 changes: 32 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ var arr = Int16Array.from( [ 1, 2 ], mapFcn );

A callback function is provided two arguments:

- `value`: source value
- `index`: source index
- `value`: source value.
- `index`: source index.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -396,9 +396,9 @@ var bool = arr.every( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -515,9 +515,9 @@ var arr2 = arr1.filter( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -577,9 +577,9 @@ var v = arr.find( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -640,9 +640,9 @@ var idx = arr.findIndex( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -695,9 +695,9 @@ console.log( str );

The callback is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -912,9 +912,9 @@ var arr2 = arr1.map( fcn );

A callback is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -976,10 +976,10 @@ var v = arr.reduce( fcn, 0 );

A callback is provided four arguments:

- `acc`: accumulated result
- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `acc`: accumulated result.
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

<a name="method-reduce-right"></a>

Expand Down Expand Up @@ -1019,10 +1019,10 @@ var v = arr.reduce( fcn, 0 );

A callback is provided four arguments:

- `acc`: accumulated result
- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `acc`: accumulated result.
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

<a name="method-reverse"></a>

Expand Down Expand Up @@ -1195,9 +1195,9 @@ var bool = arr.some( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -1499,7 +1499,7 @@ See [LICENSE][stdlib-license].

## Copyright

Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].

</section>

Expand Down

0 comments on commit e948085

Please sign in to comment.