Skip to content

Commit 18db3cb

Browse files
committed
Auto-generated commit
1 parent 53c4e80 commit 18db3cb

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
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+
- [`b527ab1`](https://github.com/stdlib-js/stdlib/commit/b527ab1153bf572ec1e89e6c479528c52f1a811d) - **bench:** refactor to use string interpolation in `array/base/arraylike2object` [(#8689)](https://github.com/stdlib-js/stdlib/pull/8689) _(by Rohit R Bhat)_
259260
- [`61b2514`](https://github.com/stdlib-js/stdlib/commit/61b2514faeb8b0bc5ba985cc60e1ffe2de68dba6) - **bench:** refactor to use string interpolation in `array/base/any-is-entry-in` [(#8682)](https://github.com/stdlib-js/stdlib/pull/8682) _(by Aman Singh)_
260261
- [`4c8449f`](https://github.com/stdlib-js/stdlib/commit/4c8449fefd90216408e4eb8d1b03bdca98a78be1) - **docs:** improve doctests for complex number instances in `array/base/resolve-getter` [(#8695)](https://github.com/stdlib-js/stdlib/pull/8695) _(by Divyanshu, Athan Reines)_
261262
- [`db85f69`](https://github.com/stdlib-js/stdlib/commit/db85f697acea61131500a6dc823835b19d76bdc7) - **docs:** improve doctests for complex number instances in `array/base/at` [(#8654)](https://github.com/stdlib-js/stdlib/pull/8654) _(by Aryan kumar, Athan Reines)_

base/arraylike2object/benchmark/benchmark.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var bench = require( '@stdlib/bench' );
2424
var Float64Array = require( './../../../float64' );
2525
var zeros = require( './../../../base/zeros' );
2626
var isCollection = require( '@stdlib/assert/is-collection' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var arraylike2object = 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 values;
3536
var out;
3637
var i;
@@ -56,7 +57,7 @@ bench( pkg+'::array', function benchmark( b ) {
5657
b.end();
5758
});
5859

59-
bench( pkg+'::typed_array', function benchmark( b ) {
60+
bench( format( '%s::typed_array', pkg ), function benchmark( b ) {
6061
var values;
6162
var out;
6263
var i;
@@ -82,7 +83,7 @@ bench( pkg+'::typed_array', function benchmark( b ) {
8283
b.end();
8384
});
8485

85-
bench( pkg+'::array_like', function benchmark( b ) {
86+
bench( format( '%s::array_like', pkg ), function benchmark( b ) {
8687
var arr;
8788
var out;
8889
var i;

0 commit comments

Comments
 (0)