Skip to content

Commit ff4a005

Browse files
committed
Auto-generated commit
1 parent de85043 commit ff4a005

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 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-03-24)
7+
## Unreleased (2026-04-17)
88

99
<section class="issues">
1010

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

2525
<details>
2626

27+
- [`67c0a20`](https://github.com/stdlib-js/stdlib/commit/67c0a2044e515ea6733765a48be54f09ea749d8f) - **bench:** refactor to use string interpolation in `@stdlib/assert` [(#11398)](https:-/github.com/stdlib-js/stdlib/pull/11398) _(by Karan Anand)_
2728
- [`a23f66e`](https://github.com/stdlib-js/stdlib/commit/a23f66e92903ea4bd88c0fb0bfcd49c80d17ddf7) - **chore:** remove unused ESLint directive [(#11100)](https://github.com/stdlib-js/stdlib/pull/11100) _(by Matt Van Horn)_
2829

2930
</details>
@@ -36,8 +37,9 @@ This release closes the following issue:
3637

3738
### Contributors
3839

39-
A total of 1 person contributed to this release. Thank you to this contributor:
40+
A total of 2 people contributed to this release. Thank you to the following contributors:
4041

42+
- Karan Anand
4143
- Matt Van Horn
4244

4345
</section>

benchmark/benchmark.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
2424
var Number = require( '@stdlib/number-ctor' );
2525
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
2626
var pow = require( '@stdlib/math-base-special-pow' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var isNonPositiveNumberArray = require( './../lib' );
2930

@@ -106,13 +107,13 @@ function main() {
106107
len = pow( 10, i );
107108

108109
f = createBenchmark( isNonPositiveNumberArray, len, false );
109-
bench( pkg+':len='+len, f );
110+
bench( format( '%s:len=%d', pkg, len ), f );
110111

111112
f = createBenchmark( isNonPositiveNumberArray.primitives, len, true );
112-
bench( pkg+':primitives:len='+len, f );
113+
bench( format( '%s:primitives:len=%d', pkg, len ), f );
113114

114115
f = createBenchmark( isNonPositiveNumberArray.objects, len, false );
115-
bench( pkg+':objects:len='+len, f );
116+
bench( format( '%s:objects:len=%d', pkg, len ), f );
116117
}
117118
}
118119

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@stdlib/assert-is-boolean": "^0.2.3",
4747
"@stdlib/math-base-special-pow": "^0.3.1",
4848
"@stdlib/number-ctor": "^0.2.3",
49+
"@stdlib/string-format": "^0.2.3",
4950
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5051
"istanbul": "^0.4.1",
5152
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)