Skip to content

Commit d9c1286

Browse files
committed
Auto-generated commit
1 parent 2fe4248 commit d9c1286

File tree

5 files changed

+69
-35
lines changed

5 files changed

+69
-35
lines changed

.github/.keepalive

-1
This file was deleted.

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-01-04)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`321e49e`](https://github.com/stdlib-js/stdlib/commit/321e49e9965648f1b5eb6a840fe454959af0ec49) - **docs:** add missing periods to list items _(by Philipp Burckhardt)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Philipp Burckhardt
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.2">
640

741
## 0.2.2 (2024-07-27)

CONTRIBUTORS

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Daniel Killenberger <[email protected]>
2727
Daniel Yu <[email protected]>
2828
Debashis Maharana <[email protected]>
2929
Desh Deepak Kant <[email protected]>
30+
Dhruv Arvind Singh <[email protected]>
3031
Divyansh Seth <[email protected]>
3132
Dominic Lim <[email protected]>
3233
Dominik Moritz <[email protected]>
@@ -117,7 +118,7 @@ UtkershBasnet <[email protected]>
117118
Vaibhav Patel <[email protected]>
118119
Varad Gupta <[email protected]>
119120
Vinit Pandit <[email protected]>
120-
Vivek maurya <[email protected].com>
121+
Vivek Maurya <vm8118134@gmail.com>
121122
Xiaochuan Ye <[email protected]>
122123
Yaswanth Kosuru <[email protected]>
123124
Yernar Yergaziyev <[email protected]>

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

README.md

+32-32
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ var arr = Uint16Array.from( [ 1, 2 ], mapFcn );
262262

263263
A callback function is provided two arguments:
264264

265-
- `value`: source value
266-
- `index`: source index
265+
- `value`: source value.
266+
- `index`: source index.
267267

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

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

397397
A `predicate` function is provided three arguments:
398398

399-
- `value`: array element
400-
- `index`: array index
401-
- `arr`: array on which the method is invoked
399+
- `value`: array element.
400+
- `index`: array index.
401+
- `arr`: array on which the method is invoked.
402402

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

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

516516
A `predicate` function is provided three arguments:
517517

518-
- `value`: array element
519-
- `index`: array index
520-
- `arr`: array on which the method is invoked
518+
- `value`: array element.
519+
- `index`: array index.
520+
- `arr`: array on which the method is invoked.
521521

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

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

578578
A `predicate` function is provided three arguments:
579579

580-
- `value`: array element
581-
- `index`: array index
582-
- `arr`: array on which the method is invoked
580+
- `value`: array element.
581+
- `index`: array index.
582+
- `arr`: array on which the method is invoked.
583583

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

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

641641
A `predicate` function is provided three arguments:
642642

643-
- `value`: array element
644-
- `index`: array index
645-
- `arr`: array on which the method is invoked
643+
- `value`: array element.
644+
- `index`: array index.
645+
- `arr`: array on which the method is invoked.
646646

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

@@ -695,9 +695,9 @@ console.log( str );
695695

696696
The callback is provided three arguments:
697697

698-
- `value`: array element
699-
- `index`: array index
700-
- `arr`: array on which the method is invoked
698+
- `value`: array element.
699+
- `index`: array index.
700+
- `arr`: array on which the method is invoked.
701701

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

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

913913
A callback is provided three arguments:
914914

915-
- `value`: array element
916-
- `index`: array index
917-
- `arr`: array on which the method is invoked
915+
- `value`: array element.
916+
- `index`: array index.
917+
- `arr`: array on which the method is invoked.
918918

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

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

977977
A callback is provided four arguments:
978978

979-
- `acc`: accumulated result
980-
- `value`: array element
981-
- `index`: array index
982-
- `arr`: array on which the method is invoked
979+
- `acc`: accumulated result.
980+
- `value`: array element.
981+
- `index`: array index.
982+
- `arr`: array on which the method is invoked.
983983

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

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

10201020
A callback is provided four arguments:
10211021

1022-
- `acc`: accumulated result
1023-
- `value`: array element
1024-
- `index`: array index
1025-
- `arr`: array on which the method is invoked
1022+
- `acc`: accumulated result.
1023+
- `value`: array element.
1024+
- `index`: array index.
1025+
- `arr`: array on which the method is invoked.
10261026

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

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

11961196
A `predicate` function is provided three arguments:
11971197

1198-
- `value`: array element
1199-
- `index`: array index
1200-
- `arr`: array on which the method is invoked
1198+
- `value`: array element.
1199+
- `index`: array index.
1200+
- `arr`: array on which the method is invoked.
12011201

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

@@ -1499,7 +1499,7 @@ See [LICENSE][stdlib-license].
14991499

15001500
## Copyright
15011501

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

15041504
</section>
15051505

0 commit comments

Comments
 (0)