Skip to content

Commit 355aac5

Browse files
committed
Auto-generated commit
1 parent ba73822 commit 355aac5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ A total of 33 issues were closed in this release:
257257

258258
<details>
259259

260+
- [`9836337`](https://github.com/stdlib-js/stdlib/commit/9836337952ec885367411bbea26d393aff18aef1) - **bench:** refactor to use string interpolation in `array/base/bifurcate-indices` [(#8851)](https://github.com/stdlib-js/stdlib/pull/8851) _(by ashutoshsao)_
260261
- [`b8beb65`](https://github.com/stdlib-js/stdlib/commit/b8beb6541969d801b04d8937a8a10d5aa184b796) - **bench:** refactor to use string interpolation in `array/base/cuany` [(#8853)](https://github.com/stdlib-js/stdlib/pull/8853) _(by Aman Singh)_
261262
- [`741d69e`](https://github.com/stdlib-js/stdlib/commit/741d69e63e3467605f6fb777136fcdb8dc6f8492) - **docs:** update examples in `array` TypeScript declarations [(#8836)](https://github.com/stdlib-js/stdlib/pull/8836) _(by stdlib-bot)_
262263
- [`53365b8`](https://github.com/stdlib-js/stdlib/commit/53365b8c311a4ea4bdc1b886fe890ad7bfc61d1c) - **bench:** refactor to use string interpolation in `array/base/copy` [(#8821)](https://github.com/stdlib-js/stdlib/pull/8821) _(by Aman Singh)_
@@ -661,7 +662,7 @@ A total of 33 issues were closed in this release:
661662

662663
### Contributors
663664

664-
A total of 25 people contributed to this release. Thank you to the following contributors:
665+
A total of 26 people contributed to this release. Thank you to the following contributors:
665666

666667
- Aayush Khanna
667668
- Abhijit Raut
@@ -688,6 +689,7 @@ A total of 25 people contributed to this release. Thank you to the following con
688689
- Sachin Raj
689690
- Shabareesh Shetty
690691
- Vinit Pandit
692+
- ashutoshsao
691693

692694
</section>
693695

base/bifurcate-indices/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 isArrayArray = require( '@stdlib/assert/is-array-array' );
2626
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
2727
var zeroTo = require( './../../../base/zero-to' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var bifurcateIndices = require( './../lib' );
3031

@@ -97,7 +98,7 @@ function main() {
9798
len = pow( 10, i );
9899

99100
f = createBenchmark( len );
100-
bench( pkg+':len='+len, f );
101+
bench( format( '%s:len=%d', pkg, len ), f );
101102
}
102103
}
103104

0 commit comments

Comments
 (0)