Skip to content

Commit 291cdc9

Browse files
committed
Auto-generated commit
1 parent 6325ca2 commit 291cdc9

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

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

792792
<details>
793793

794+
- [`075d798`](https://github.com/stdlib-js/stdlib/commit/075d7989c15119545bb4474ac5674b92073f5ddf) - **bench:** refactor to use string interpolation in `ndarray/base/assert/has-equal-shape` [(#11039)](https://github.com/stdlib-js/stdlib/pull/11039) _(by Partha Das)_
794795
- [`d597c1d`](https://github.com/stdlib-js/stdlib/commit/d597c1d7b7dcb6b9a8d30e93b0042b61b0b2f130) - **feat:** update `ndarray` TypeScript declarations [(#11048)](https://github.com/stdlib-js/stdlib/pull/11048) _(by stdlib-bot)_
795796
- [`23887f6`](https://github.com/stdlib-js/stdlib/commit/23887f6a96dbba2fd988205a9db15aafad49d3a1) - **docs:** update namespace table of contents [(#11049)](https://github.com/stdlib-js/stdlib/pull/11049) _(by stdlib-bot)_
796797
- [`02c34bc`](https://github.com/stdlib-js/stdlib/commit/02c34bcc0cdd0ebba2f0fc8c311534aebf1ede2a) - **feat:** add `everyBy` to namespace _(by Athan Reines)_

base/assert/has-equal-shape/benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
var bench = require( '@stdlib/bench' );
2424
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
2525
var array = require( './../../../../array' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var hasEqualShape = require( './../lib' );
2829

2930

3031
// MAIN //
3132

32-
bench( pkg+'::true', function benchmark( b ) {
33+
bench( format( '%s::true', pkg ), function benchmark( b ) {
3334
var values;
3435
var out;
3536
var v;
@@ -56,7 +57,7 @@ bench( pkg+'::true', function benchmark( b ) {
5657
b.end();
5758
});
5859

59-
bench( pkg+'::false', function benchmark( b ) {
60+
bench( format( '%s::false', pkg ), function benchmark( b ) {
6061
var values;
6162
var out;
6263
var v1;

0 commit comments

Comments
 (0)