Skip to content

Commit b789f08

Browse files
committed
Auto-generated commit
1 parent 0e3b76f commit b789f08

4 files changed

Lines changed: 39 additions & 4 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
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 (2026-04-19)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`342466e`](https://github.com/stdlib-js/stdlib/commit/342466efa3e8837ecd245ff3dd51ef0c40c52ed6) - **bench:** refactor to use string interpolation in `@stdlib/assert` [(#11399)](https:-/github.com/stdlib-js/stdlib/pull/11399) _(by Karan Anand)_
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+
- Karan Anand
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.3">
640

741
## 0.2.3 (2026-02-07)

benchmark/benchmark.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var pow = require( '@stdlib/math-base-special-pow' );
2626
var hasSymbolSupport = require( '@stdlib/assert-has-symbol-support' );
2727
var Symbol = require( '@stdlib/symbol-ctor' );
2828
var Object = require( '@stdlib/object-ctor' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031
var isSymbolArray = require( './../lib' );
3132

@@ -123,13 +124,13 @@ function main() {
123124
len = pow( 10, i );
124125

125126
f = createBenchmark( isSymbolArray, len, false );
126-
bench( pkg+':len='+len, f );
127+
bench( format( '%s:len=%d', pkg, len ), f );
127128

128129
f = createBenchmark( isSymbolArray.primitives, len, true );
129-
bench( pkg+':primitives:len='+len, f );
130+
bench( format( '%s:primitives:len=%d', pkg, len ), f );
130131

131132
f = createBenchmark( isSymbolArray.objects, len, false );
132-
bench( pkg+':objects:len='+len, f );
133+
bench( format( '%s:objects:len=%d', pkg, len ), f );
133134
}
134135
}
135136

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/object-ctor": "^0.2.2",
49+
"@stdlib/string-format": "^0.2.3",
4950
"@stdlib/symbol-ctor": "^0.2.3",
5051
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5152
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)