Skip to content

Commit fd8c6a5

Browse files
committed
Auto-generated commit
1 parent fa7ad17 commit fd8c6a5

6 files changed

Lines changed: 13 additions & 8 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-26)
7+
## Unreleased (2026-05-03)
88

99
<section class="issues">
1010

@@ -24,6 +24,8 @@ This release closes the following issue:
2424

2525
<details>
2626

27+
- [`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)_
28+
- [`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)_
2729
- [`42acdf2`](https://github.com/stdlib-js/stdlib/commit/42acdf26b0ce7508c49ca70927bf6d696aeb7f64) - **docs:** update examples _(by Athan Reines)_
2830
- [`650bf8a`](https://github.com/stdlib-js/stdlib/commit/650bf8aca46c48d15142d7b16dad34a3af09dda2) - **chore:** fix JavaScript lint errors [(#11533)](https://github.com/stdlib-js/stdlib/pull/11533) _(by Bhumika Sudarshani)_
2931

@@ -37,10 +39,12 @@ This release closes the following issue:
3739

3840
### Contributors
3941

40-
A total of 2 people contributed to this release. Thank you to the following contributors:
42+
A total of 4 people contributed to this release. Thank you to the following contributors:
4143

4244
- Athan Reines
4345
- Bhumika Sudarshani
46+
- Karan Anand
47+
- Philipp Burckhardt
4448

4549
</section>
4650

benchmark/benchmark.factory.js

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

2323
var bench = require( '@stdlib/bench-harness' );
2424
var randu = require( '@stdlib/random-base-randu' );
25+
var format = require( '@stdlib/string-format' );
2526
var pkg = require( './../package.json' ).name;
2627
var factory = require( './../lib/factory.js' );
2728

2829

2930
// MAIN //
3031

31-
bench( pkg+':factory', function benchmark( b ) {
32+
bench( format( '%s:factory', pkg ), function benchmark( b ) {
3233
var mapValuesAsync;
3334
var obj;
3435
var i;

benchmark/benchmark.js

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

2323
var bench = require( '@stdlib/bench-harness' );
2424
var randu = require( '@stdlib/random-base-randu' );
25+
var format = require( '@stdlib/string-format' );
2526
var pkg = require( './../package.json' ).name;
2627
var mapValuesAsync = require( './../lib' );
2728

@@ -65,7 +66,7 @@ bench( pkg, function benchmark( b ) {
6566
}
6667
});
6768

68-
bench( pkg+':series=true', function benchmark( b ) {
69+
bench( format( '%s:series=true', pkg ), function benchmark( b ) {
6970
var opts;
7071
var obj;
7172
var i;
@@ -106,7 +107,7 @@ bench( pkg+':series=true', function benchmark( b ) {
106107
}
107108
});
108109

109-
bench( pkg+':limit=3', function benchmark( b ) {
110+
bench( format( '%s:limit=3', pkg ), function benchmark( b ) {
110111
var opts;
111112
var obj;
112113
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
@@ -77,7 +77,7 @@ function limit( obj, opts, fcn, done ) {
7777
for ( i = 0; i < lim; i++ ) {
7878
// This guard is necessary to protect against synchronous functions which exhaust all properties...
7979
if ( idx < maxIndex ) {
80-
next(); // eslint-disable-line node/callback-return
80+
next(); // eslint-disable-line n/callback-return
8181
}
8282
}
8383
/**

0 commit comments

Comments
 (0)