Skip to content

Commit b75c007

Browse files
committed
Auto-generated commit
1 parent 1f91fc4 commit b75c007

6 files changed

Lines changed: 44 additions & 6 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-05-03)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`822fadc`](https://github.com/stdlib-js/stdlib/commit/822fadca5619ac17182fad841af43ec6d1cdd81e) - **bench:** refactor to use string interpolation in `utils` [(#11410)](https://github.com/stdlib-js/stdlib/pull/11410) _(by Karan Anand, Athan Reines)_
16+
- [`0dc62ae`](https://github.com/stdlib-js/stdlib/commit/0dc62ae39a4817ff888e9736c3ea599f6beff4e5) - **build:** replace `eslint-plugin-node` with `eslint-plugin-n` [(#10952)](https://github.com/stdlib-js/stdlib/pull/10952) _(by Philipp Burckhardt, Athan Reines)_
17+
18+
</details>
19+
20+
</section>
21+
22+
<!-- /.commits -->
23+
24+
<section class="contributors">
25+
26+
### Contributors
27+
28+
A total of 3 people contributed to this release. Thank you to the following contributors:
29+
30+
- Athan Reines
31+
- Karan Anand
32+
- Philipp Burckhardt
33+
34+
</section>
35+
36+
<!-- /.contributors -->
37+
38+
</section>
39+
40+
<!-- /.release -->
41+
542
<section class="release" id="v0.2.3">
643

744
## 0.2.3 (2026-02-07)

benchmark/benchmark.factory.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench-harness' );
24+
var format = require( '@stdlib/string-format' );
2425
var pkg = require( './../package.json' ).name;
2526
var factory = require( './../lib/factory.js' );
2627

2728

2829
// MAIN //
2930

30-
bench( pkg+':factory', function benchmark( b ) {
31+
bench( format( '%s:factory', pkg ), function benchmark( b ) {
3132
var anyByRightAsync;
3233
var arr;
3334
var i;

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench-harness' );
24+
var format = require( '@stdlib/string-format' );
2425
var pkg = require( './../package.json' ).name;
2526
var anyByRightAsync = require( './../lib' );
2627

@@ -59,7 +60,7 @@ bench( pkg, function benchmark( b ) {
5960
}
6061
});
6162

62-
bench( pkg+':series=true', function benchmark( b ) {
63+
bench( format( '%s:series=true', pkg ), function benchmark( b ) {
6364
var opts;
6465
var arr;
6566
var i;
@@ -95,7 +96,7 @@ bench( pkg+':series=true', function benchmark( b ) {
9596
}
9697
});
9798

98-
bench( pkg+':limit=3', function benchmark( b ) {
99+
bench( format( '%s:limit=3', pkg ), function benchmark( b ) {
99100
var opts;
100101
var arr;
101102
var i;

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/limit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function limit( collection, opts, predicate, done ) {
7070
for ( i = 0; i < lim; i++ ) {
7171
// This guard is necessary to protect against synchronous functions which exhaust all collection elements...
7272
if ( idx > 0 ) {
73-
next(); // eslint-disable-line node/callback-return
73+
next(); // eslint-disable-line n/callback-return
7474
}
7575
}
7676

0 commit comments

Comments
 (0)