Skip to content

Commit b16adcd

Browse files
committed
Auto-generated commit
1 parent 52fb60e commit b16adcd

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

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 (2025-12-27)
7+
## Unreleased (2025-12-31)
88

99
<section class="features">
1010

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

261261
<details>
262262

263+
- [`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)_
263264
- [`6ce0275`](https://github.com/stdlib-js/stdlib/commit/6ce0275d3eec598ce3ecb8da74a1c82f0de3a482) - **docs:** remove incorrect hyphens from JSDoc `returns` annotations _(by Philipp Burckhardt)_
264265
- [`b45d635`](https://github.com/stdlib-js/stdlib/commit/b45d6355de87bcd65764a9c07f5551e2423e83cb) - **bench:** refactor to use string interpolation in `array/base/filled5d-by` [(#9283)](https://github.com/stdlib-js/stdlib/pull/9283) _(by Rohit R Bhat)_
265266
- [`5bfa5e8`](https://github.com/stdlib-js/stdlib/commit/5bfa5e8ac36fe7abb9c8799560fb90c787999360) - **bench:** refactor to use string interpolation in `array/base/zeros4d` [(#9277)](https://github.com/stdlib-js/stdlib/pull/9277) _(by anee3)_
@@ -707,7 +708,7 @@ A total of 33 issues were closed in this release:
707708

708709
### Contributors
709710

710-
A total of 30 people contributed to this release. Thank you to the following contributors:
711+
A total of 31 people contributed to this release. Thank you to the following contributors:
711712

712713
- Aayush Khanna
713714
- Abhijit Raut
@@ -723,6 +724,7 @@ A total of 30 people contributed to this release. Thank you to the following con
723724
- Gururaj Gurram
724725
- Jay Soni
725726
- Kate Suraev
727+
- KovidhRaj
726728
- Kshitij-Dale
727729
- Lalit Narayan Yadav
728730
- Muhammad Haris

base/assert/is-accessor-array/benchmark/benchmark.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var bench = require( '@stdlib/bench' );
2424
var Float64Array = require( './../../../../float64' );
2525
var Complex128Array = require( './../../../../complex128' );
2626
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var isAccessorArray = require( './../lib' );
2930

3031

3132
// MAIN //
3233

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

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

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

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

0 commit comments

Comments
 (0)