From e948085055605aff01b6d1c31d6ccc9f2d32ca52 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sat, 4 Jan 2025 21:19:25 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 1 - CHANGELOG.md | 34 ++++++++++++++++++++++++ CONTRIBUTORS | 3 ++- NOTICE | 2 +- README.md | 64 +++++++++++++++++++++++----------------------- 5 files changed, 69 insertions(+), 35 deletions(-) delete mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive deleted file mode 100644 index 7d2e3cb..0000000 --- a/.github/.keepalive +++ /dev/null @@ -1 +0,0 @@ -2024-12-30T02:35:16.531Z diff --git a/CHANGELOG.md b/CHANGELOG.md index d7b48ae..b18e511 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,40 @@ > Package changelog. +
+ +## Unreleased (2025-01-04) + +
+ +### Commits + +
+ +- [`321e49e`](https://github.com/stdlib-js/stdlib/commit/321e49e9965648f1b5eb6a840fe454959af0ec49) - **docs:** add missing periods to list items _(by Philipp Burckhardt)_ + +
+ +
+ + + +
+ +### Contributors + +A total of 1 person contributed to this release. Thank you to this contributor: + +- Philipp Burckhardt + +
+ + + +
+ + +
## 0.2.2 (2024-07-27) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 173c07b..440aba1 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -27,6 +27,7 @@ Daniel Killenberger Daniel Yu <40680511+Daniel777y@users.noreply.github.com> Debashis Maharana 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 @@ -117,7 +118,7 @@ UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com> Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com> Varad Gupta Vinit Pandit <106718914+MeastroZI@users.noreply.github.com> -Vivek maurya <155618190+vivekmaurya001@users.noreply.github.com> +Vivek Maurya Xiaochuan Ye Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com> Yernar Yergaziyev diff --git a/NOTICE b/NOTICE index e6e7482..cbd3a29 100644 --- a/NOTICE +++ b/NOTICE @@ -1 +1 @@ -Copyright (c) 2016-2024 The Stdlib Authors. +Copyright (c) 2016-2025 The Stdlib Authors. diff --git a/README.md b/README.md index 6325f8a..a2a1be6 100644 --- a/README.md +++ b/README.md @@ -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`. @@ -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`. @@ -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`. @@ -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`. @@ -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`. @@ -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`. @@ -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`. @@ -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. @@ -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. @@ -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`. @@ -1499,7 +1499,7 @@ See [LICENSE][stdlib-license]. ## Copyright -Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors]. +Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].