Skip to content

Commit 340dc48

Browse files
committed
Auto-generated commit
1 parent 451b9c9 commit 340dc48

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+
- [`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)_
259260
- [`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)_
260261
- [`9c3b5b8`](https://github.com/stdlib-js/stdlib/commit/9c3b5b898d6c0691177e75900bba8125ad89b22f) - **bench:** refactor to use string interpolation in `array/base/any-by` [(#8650)](https://github.com/stdlib-js/stdlib/pull/8650) _(by Aman Singh)_
261262
- [`d745259`](https://github.com/stdlib-js/stdlib/commit/d745259e39acdcc3f80b3b569185491daef92145) - **docs:** add missing spaces and update parameter type _(by Philipp Burckhardt)_

base/any-has-own-property/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 anyHasOwnProp = 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)