Skip to content

Commit 0d40e3e

Browse files
committed
Auto-generated commit
1 parent 60fed39 commit 0d40e3e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
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 (2025-12-06)
7+
## Unreleased (2025-12-07)
88

99
<section class="features">
1010

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

258258
<details>
259259

260+
- [`d00c1ad`](https://github.com/stdlib-js/stdlib/commit/d00c1adc5eec7c5fc80c211d1ba8b6d6f9cd9336) - **bench:** refactor to use string interpolation in `array/base/cuany-by` [(#8861)](https://github.com/stdlib-js/stdlib/pull/8861) _(by Aman Singh)_
260261
- [`dd20818`](https://github.com/stdlib-js/stdlib/commit/dd20818a40cdd215a614a7cb1ec580c95f8fde80) - **bench:** refactor to use string interpolation in `array/base/assert/contains` [(#8844)](https://github.com/stdlib-js/stdlib/pull/8844) _(by ashutoshsao)_
261262
- [`257b05e`](https://github.com/stdlib-js/stdlib/commit/257b05e78857f4b4ff76b3764565eadd8ce75946) - **bench:** refactor to use string interpolation in `array/base/assert/has-same-values` [(#8847)](https://github.com/stdlib-js/stdlib/pull/8847) _(by ashutoshsao)_
262263
- [`cb96e8f`](https://github.com/stdlib-js/stdlib/commit/cb96e8f86be54682f17fc6a4f47338aea2ad30a9) - **bench:** refactor to use string interpolation in `array/base/assert/has-equal-values-indexed` [(#8846)](https://github.com/stdlib-js/stdlib/pull/8846) _(by ashutoshsao)_

base/cuany-by/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2525
var isArray = require( '@stdlib/assert/is-array' );
2626
var filled = require( './../../../base/filled' );
2727
var isPositiveInteger = require( '@stdlib/assert/is-positive-integer' ).isPrimitive;
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var cuanyBy = require( './../lib' );
3031

@@ -89,7 +90,7 @@ function main() {
8990
for ( i = min; i <= max; i++ ) {
9091
len = pow( 10, i );
9192
f = createBenchmark( len );
92-
bench( pkg+':len='+len, f );
93+
bench( format( '%s:len=%d', pkg, len ), f );
9394
}
9495
}
9596

0 commit comments

Comments
 (0)