Skip to content

Commit 76104f0

Browse files
committed
Auto-generated commit
1 parent a8222e8 commit 76104f0

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
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+
- [`4e547d4`](https://github.com/stdlib-js/stdlib/commit/4e547d4b67f772a0950a4f2c6b1744620c827667) - **bench:** refactor to use string interpolation in `array/base/cusome-by` [(#8903)](https://github.com/stdlib-js/stdlib/pull/8903) _(by Aman Singh)_
260261
- [`b942e0e`](https://github.com/stdlib-js/stdlib/commit/b942e0e9a0a88d7b2f4f8557eaee1f9e76c156e8) - **bench:** refactor to use string interpolation in `array/base/fill` [(#8898)](https://github.com/stdlib-js/stdlib/pull/8898) _(by Rohit R Bhat, Athan Reines)_
261262
- [`2bf7cbf`](https://github.com/stdlib-js/stdlib/commit/2bf7cbf148aab4f2506f08aefc367749fae12293) - **bench:** refactor to use string interpolation in `array/base/fill-by` [(#8899)](https://github.com/stdlib-js/stdlib/pull/8899) _(by Rohit R Bhat, Athan Reines)_
262263
- [`e823a35`](https://github.com/stdlib-js/stdlib/commit/e823a3537257e5bfb6f0c59cb983fd8ca7752ff2) - **bench:** refactor to use string interpolation in `array/base/filled` [(#8900)](https://github.com/stdlib-js/stdlib/pull/8900) _(by Rohit R Bhat, Athan Reines)_

base/cusome-by/benchmark/benchmark.assign.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 isPositiveInteger = require( '@stdlib/assert/is-positive-integer' ).isPrimitive;
2727
var filled = require( './../../../base/filled' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var cusomeBy = require( './../lib' );
3031

@@ -92,7 +93,7 @@ function main() {
9293
for ( i = min; i <= max; i++ ) {
9394
len = pow( 10, i );
9495
f = createBenchmark( len );
95-
bench( pkg+':assign:len='+len, f );
96+
bench( format( '%s:assign:len=%d', pkg, len ), f );
9697
}
9798
}
9899

base/cusome-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 isPositiveInteger = require( '@stdlib/assert/is-positive-integer' );
2727
var filled = require( './../../../base/filled' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var cusomeBy = 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)