Skip to content

Commit e4d96c4

Browse files
committed
Auto-generated commit
1 parent 3a6e3df commit e4d96c4

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 = Float64Array.from( [ 1.0, -1.0 ], 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

@@ -918,9 +918,9 @@ var arr2 = arr1.map( fcn );
918918

919919
A callback is provided three arguments:
920920

921-
- `value`: array element
922-
- `index`: array index
923-
- `arr`: array on which the method is invoked
921+
- `value`: array element.
922+
- `index`: array index.
923+
- `arr`: array on which the method is invoked.
924924

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

@@ -982,10 +982,10 @@ var v = arr.reduce( fcn, 0.0 );
982982

983983
A callback is provided four arguments:
984984

985-
- `acc`: accumulated result
986-
- `value`: array element
987-
- `index`: array index
988-
- `arr`: array on which the method is invoked
985+
- `acc`: accumulated result.
986+
- `value`: array element.
987+
- `index`: array index.
988+
- `arr`: array on which the method is invoked.
989989

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

@@ -1025,10 +1025,10 @@ var v = arr.reduce( fcn, 0.0 );
10251025

10261026
A callback is provided four arguments:
10271027

1028-
- `acc`: accumulated result
1029-
- `value`: array element
1030-
- `index`: array index
1031-
- `arr`: array on which the method is invoked
1028+
- `acc`: accumulated result.
1029+
- `value`: array element.
1030+
- `index`: array index.
1031+
- `arr`: array on which the method is invoked.
10321032

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

@@ -1201,9 +1201,9 @@ var bool = arr.some( predicate );
12011201

12021202
A `predicate` function is provided three arguments:
12031203

1204-
- `value`: array element
1205-
- `index`: array index
1206-
- `arr`: array on which the method is invoked
1204+
- `value`: array element.
1205+
- `index`: array index.
1206+
- `arr`: array on which the method is invoked.
12071207

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

@@ -1504,7 +1504,7 @@ See [LICENSE][stdlib-license].
15041504

15051505
## Copyright
15061506

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

15091509
</section>
15101510

0 commit comments

Comments
 (0)