Skip to content

Commit bfece52

Browse files
committed
Auto-generated commit
1 parent 9dfa74e commit bfece52

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
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+
- [`4c6da75`](https://github.com/stdlib-js/stdlib/commit/4c6da75d5efe773301912258d2b10f7e7121f4e0) - **bench:** refactor to use string interpolation in `array/base/assert/is-complex64array` [(#8784)](https://github.com/stdlib-js/stdlib/pull/8784) _(by Rohit R Bhat)_
259260
- [`e7258ae`](https://github.com/stdlib-js/stdlib/commit/e7258ae18bab179392875a2aa810646f33da80e6) - **bench:** refactor to use string interpolation in `array/base/assert/is-complex128array` [(#8782)](https://github.com/stdlib-js/stdlib/pull/8782) _(by Rohit R Bhat)_
260261
- [`71af1a0`](https://github.com/stdlib-js/stdlib/commit/71af1a07d17630e96be2349ac6d4ee76db3e1270) - **docs:** fix type _(by Athan Reines)_
261262
- [`9b50472`](https://github.com/stdlib-js/stdlib/commit/9b504729537c53298de78068c1b02dbb64170c88) - **bench:** refactor to use string interpolation in `array/base/assert/is-sorted-ascending` [(#8749)](https://github.com/stdlib-js/stdlib/pull/8749) _(by Rohit R Bhat)_

base/assert/is-complex64array/benchmark/benchmark.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var bench = require( '@stdlib/bench' );
2424
var Float32Array = require( './../../../../float32' );
2525
var Complex64Array = require( './../../../../complex64' );
2626
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var isComplex64Array = require( './../lib' );
2930

3031

3132
// MAIN //
3233

33-
bench( pkg+'::array', function benchmark( b ) {
34+
bench( format( '%s::array', pkg ), function benchmark( b ) {
3435
var bool;
3536
var obj;
3637
var i;
@@ -51,7 +52,7 @@ bench( pkg+'::array', function benchmark( b ) {
5152
b.end();
5253
});
5354

54-
bench( pkg+'::real_typed_array', function benchmark( b ) {
55+
bench( format( '%s::real_typed_array', pkg ), function benchmark( b ) {
5556
var values;
5657
var bool;
5758
var obj;
@@ -80,7 +81,7 @@ bench( pkg+'::real_typed_array', function benchmark( b ) {
8081
b.end();
8182
});
8283

83-
bench( pkg+'::complex_typed_array', function benchmark( b ) {
84+
bench( format( '%s::complex_typed_array', pkg ), function benchmark( b ) {
8485
var values;
8586
var bool;
8687
var obj;
@@ -109,7 +110,7 @@ bench( pkg+'::complex_typed_array', function benchmark( b ) {
109110
b.end();
110111
});
111112

112-
bench( pkg+'::array_like_object', function benchmark( b ) {
113+
bench( format( '%s::array_like_object', pkg ), function benchmark( b ) {
113114
var bool;
114115
var obj;
115116
var i;

0 commit comments

Comments
 (0)