Skip to content

Commit ccf3b70

Browse files
committed
Auto-generated commit
1 parent 8ade184 commit ccf3b70

3 files changed

Lines changed: 8 additions & 4 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-04-07)
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
- [`2c3cce1`](https://github.com/stdlib-js/stdlib/commit/2c3cce1ea3c3418873ff4c22eeaa23f674062178) - **chore:** fix JavaScript lint errors [(#10724)](https://github.com/stdlib-js/stdlib/pull/10724) _(by travisBREAKS, stdlib-bot)_
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
- travisBREAKS
4244

4345
</section>

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var Float64Array = require( '@stdlib/array-float64' );
2525
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
26+
var format = require( '@stdlib/string-format' );
2627
var pkg = require( './../package.json' ).name;
2728
var isEmptyCollection = require( './../lib' );
2829

@@ -48,7 +49,7 @@ bench( pkg, function benchmark( b ) {
4849
b.end();
4950
});
5051

51-
bench( pkg+'::typed_array', function benchmark( b ) {
52+
bench( format( '%s::typed_array', pkg ), function benchmark( b ) {
5253
var values;
5354
var bool;
5455
var obj;
@@ -77,7 +78,7 @@ bench( pkg+'::typed_array', function benchmark( b ) {
7778
b.end();
7879
});
7980

80-
bench( pkg+'::array_like_object', function benchmark( b ) {
81+
bench( format( '%s::array_like_object', pkg ), function benchmark( b ) {
8182
var bool;
8283
var obj;
8384
var i;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"@stdlib/array-uint8c": "^0.2.3",
5252
"@stdlib/assert-is-boolean": "^0.2.3",
5353
"@stdlib/buffer-alloc-unsafe": "^0.2.3",
54+
"@stdlib/string-format": "^0.2.3",
5455
"@stdlib/utils-constructor-name": "^0.2.3",
5556
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5657
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)