Skip to content

Commit 2dbad3c

Browse files
committed
Auto-generated commit
1 parent 1cdfb63 commit 2dbad3c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ A total of 33 issues were closed in this release:
256256

257257
<details>
258258

259+
- [`ea0d5a6`](https://github.com/stdlib-js/stdlib/commit/ea0d5a623b80a5963e7079cd58cf29e7b01b5d57) - **bench:** refactor to use string interpolation in `array/base/any-is-entry` [(#8663)](https://github.com/stdlib-js/stdlib/pull/8663) _(by Aman Singh)_
259260
- [`565c8eb`](https://github.com/stdlib-js/stdlib/commit/565c8eb009e4aff052e40dfe1a282d3c9936cfac) - **bench:** refactor to use string interpolation in `array/base/any-has-property` [(#8660)](https://github.com/stdlib-js/stdlib/pull/8660) _(by Aman Singh)_
260261
- [`f20a4e4`](https://github.com/stdlib-js/stdlib/commit/f20a4e40425bc0e8eb292cca68453950d6df89d6) - **bench:** refactor to use string interpolation in `array/base/any-has-own-property` [(#8653)](https://github.com/stdlib-js/stdlib/pull/8653) _(by Aman Singh)_
261262
- [`3517633`](https://github.com/stdlib-js/stdlib/commit/3517633448701ec6c74a6b84a32e6cabce1f5d58) - **bench:** refactor to use string interpolation in `array/base/any-by-right` [(#8652)](https://github.com/stdlib-js/stdlib/pull/8652) _(by Aman Singh)_

base/any-is-entry/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
2626
var filled = require( './../../../filled' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var anyIsEntry = require( './../lib' );
2930

@@ -89,7 +90,7 @@ function main() {
8990
len = pow( 10, i );
9091

9192
f = createBenchmark( len );
92-
bench( pkg+':dtype=generic,len='+len, f );
93+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
9394
}
9495
}
9596

0 commit comments

Comments
 (0)