Skip to content

Commit 3c3b658

Browse files
committed
Auto-generated commit
1 parent de6e3d9 commit 3c3b658

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Diff for: CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-22)
7+
## Unreleased (2024-12-23)
88

99
<section class="packages">
1010

@@ -869,6 +869,7 @@ A total of 12 people contributed to this release. Thank you to the following con
869869

870870
<details>
871871

872+
- [`0ba282b`](https://github.com/stdlib-js/stdlib/commit/0ba282b89c384f06bbe3ff8ecd71982f05209606) - **chore:** minor clean-up _(by Philipp Burckhardt)_
872873
- [`5b71452`](https://github.com/stdlib-js/stdlib/commit/5b71452bd40811341a2e4eaab018c3cc17c5feac) - **docs:** update related packages sections [(#4135)](https://github.com/stdlib-js/stdlib/pull/4135) _(by stdlib-bot, Athan Reines)_
873874
- [`c322b66`](https://github.com/stdlib-js/stdlib/commit/c322b6647751b73a9d0fe12bf5665e8e2243d4ca) - **docs:** update related packages sections [(#4070)](https://github.com/stdlib-js/stdlib/pull/4070) _(by stdlib-bot, Philipp Burckhardt)_
874875
- [`f317033`](https://github.com/stdlib-js/stdlib/commit/f3170337071651a2997d15ac194fc767570f2f75) - **docs:** update related packages sections [(#4040)](https://github.com/stdlib-js/stdlib/pull/4040) _(by stdlib-bot)_

Diff for: base/take-map/lib/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
* var x = [ 1, 2, 3, 4 ];
3030
*
3131
* function mapFunction( val ) {
32-
return val;
33-
}
32+
* return val;
33+
* }
3434
*
3535
* var indices = [ 0, 0, 1, 1, 3, 3 ];
3636
* var y = takeMap( x, indices, 'throw', mapFunction );
@@ -45,8 +45,8 @@
4545
* var indices = [ 0, 0, 1, 1, 3, 3 ];
4646
*
4747
* function clbk( val ) {
48-
return val;
49-
}
48+
* return val;
49+
* }
5050
*
5151
* var arr = takeMap.assign( x, indices, 'throw', out, 1, 0, mapFunction );
5252
* // returns [ 1, 1, 2, 2, 4, 4 ]

0 commit comments

Comments
 (0)