Skip to content

Commit b06b8e7

Browse files
committed
Auto-generated commit
1 parent 76d2cdb commit b06b8e7

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

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

7-
## Unreleased (2026-01-05)
7+
## Unreleased (2026-01-06)
88

99
<section class="features">
1010

@@ -260,6 +260,7 @@ A total of 34 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`ff76be4`](https://github.com/stdlib-js/stdlib/commit/ff76be4bd7eb9ced1fc74441b9766d1e5e6d6d31) - **bench:** use string interpolation for benchmark names [(#9517)](https://github.com/stdlib-js/stdlib/pull/9517) _(by KovidhRaj)_
263264
- [`b0c05c9`](https://github.com/stdlib-js/stdlib/commit/b0c05c934c6654a95eee523ed88fb34e12fd552b) - **chore:** fix JavaScript lint errors [(#9546)](https://github.com/stdlib-js/stdlib/pull/9546) _(by DivitJain26)_
264265
- [`d866858`](https://github.com/stdlib-js/stdlib/commit/d866858cf3082f7692f1c51883490c1da36d1879) - **bench:** refactor to use string interpolation in `array/uint8` [(#9518)](https://github.com/stdlib-js/stdlib/pull/9518) _(by Shubham)_
265266
- [`0ac2495`](https://github.com/stdlib-js/stdlib/commit/0ac2495ffcce896b3dfc737aca766b70f0ad9cb6) - **bench:** refactor to use string interpolation in `array/base/assert/is-accessor-array` [(#9458)](https://github.com/stdlib-js/stdlib/pull/9458) _(by KovidhRaj, Athan Reines, stdlib-bot)_

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2025 The Stdlib Authors.
1+
Copyright (c) 2016-2026 The Stdlib Authors.

base/assert/is-complex-typed-array/benchmark/benchmark.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ var Float64Array = require( './../../../../float64' );
2525
var Complex128Array = require( './../../../../complex128' );
2626
var Complex64Array = require( './../../../../complex64' );
2727
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var isComplexTypedArray = require( './../lib' );
3031

3132

3233
// MAIN //
3334

34-
bench( pkg+'::array', function benchmark( b ) {
35+
bench( format( '%s::array', pkg ), function benchmark( b ) {
3536
var bool;
3637
var obj;
3738
var i;
@@ -52,7 +53,7 @@ bench( pkg+'::array', function benchmark( b ) {
5253
b.end();
5354
});
5455

55-
bench( pkg+'::real_typed_array', function benchmark( b ) {
56+
bench( format( '%s::real_typed_array', pkg ), function benchmark( b ) {
5657
var values;
5758
var bool;
5859
var obj;
@@ -81,7 +82,7 @@ bench( pkg+'::real_typed_array', function benchmark( b ) {
8182
b.end();
8283
});
8384

84-
bench( pkg+'::complex_typed_array', function benchmark( b ) {
85+
bench( format( '%s::complex_typed_array', pkg ), function benchmark( b ) {
8586
var values;
8687
var bool;
8788
var obj;
@@ -110,7 +111,7 @@ bench( pkg+'::complex_typed_array', function benchmark( b ) {
110111
b.end();
111112
});
112113

113-
bench( pkg+'::array_like_object', function benchmark( b ) {
114+
bench( format( '%s::array_like_object', pkg ), function benchmark( b ) {
114115
var bool;
115116
var obj;
116117
var i;

0 commit comments

Comments
 (0)