Skip to content

Commit 9a4fe58

Browse files
committed
Auto-generated commit
1 parent 77479b8 commit 9a4fe58

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

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+
- [`f5c5dfa`](https://github.com/stdlib-js/stdlib/commit/f5c5dfaf00b470450be52e27649c745019b61aa3) - **bench:** refactor to use string interpolation in `ndarray/base/pop` [(#11061)](https://github.com/stdlib-js/stdlib/pull/11061) _(by Partha Das)_
794795
- [`16f3ebe`](https://github.com/stdlib-js/stdlib/commit/16f3ebefefdfedb0a98d276312d35a8e6de2d195) - **bench:** refactor to use string interpolation in `ndarray/base/reverse` [(#11062)](https://github.com/stdlib-js/stdlib/pull/11062) _(by Partha Das)_
795796
- [`a0084e4`](https://github.com/stdlib-js/stdlib/commit/a0084e42e84516d1b9031ce2994e8694a294b92f) - **bench:** refactor to use string interpolation in `ndarray/base/buffer-ctors` [(#11038)](https://github.com/stdlib-js/stdlib/pull/11038) _(by Partha Das)_
796797
- [`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)_

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -256,11 +256,6 @@ For more information on the project, filing bug reports and feature requests, an
256256

257257
---
258258

259-
## License
260-
261-
See [LICENSE][stdlib-license].
262-
263-
264259
## Copyright
265260

266261
Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
@@ -307,8 +302,6 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
307302
[esm-readme]: https://github.com/stdlib-js/ndarray/blob/esm/README.md
308303
[branches-url]: https://github.com/stdlib-js/ndarray/blob/main/branches.md
309304

310-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/ndarray/main/LICENSE
311-
312305
<!-- <toc-links> -->
313306

314307
[@stdlib/ndarray/any-by]: https://github.com/stdlib-js/ndarray/tree/main/any-by

base/pop/benchmark/benchmark.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
var bench = require( '@stdlib/bench' );
2424
var isndarrayLike = require( '@stdlib/assert/is-ndarray-like' );
2525
var empty = require( './../../../empty' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var pop = require( './../lib' );
2829

2930

3031
// MAIN //
3132

32-
bench( pkg+'::1d', function benchmark( b ) {
33+
bench( format( '%s::1d', pkg ), function benchmark( b ) {
3334
var values;
3435
var v;
3536
var i;
@@ -61,7 +62,7 @@ bench( pkg+'::1d', function benchmark( b ) {
6162
b.end();
6263
});
6364

64-
bench( pkg+'::2d', function benchmark( b ) {
65+
bench( format( '%s::2d', pkg ), function benchmark( b ) {
6566
var values;
6667
var v;
6768
var i;
@@ -93,7 +94,7 @@ bench( pkg+'::2d', function benchmark( b ) {
9394
b.end();
9495
});
9596

96-
bench( pkg+'::3d', function benchmark( b ) {
97+
bench( format( '%s::3d', pkg ), function benchmark( b ) {
9798
var values;
9899
var v;
99100
var i;
@@ -125,7 +126,7 @@ bench( pkg+'::3d', function benchmark( b ) {
125126
b.end();
126127
});
127128

128-
bench( pkg+'::4d', function benchmark( b ) {
129+
bench( format( '%s::4d', pkg ), function benchmark( b ) {
129130
var values;
130131
var v;
131132
var i;
@@ -157,7 +158,7 @@ bench( pkg+'::4d', function benchmark( b ) {
157158
b.end();
158159
});
159160

160-
bench( pkg+'::5d', function benchmark( b ) {
161+
bench( format( '%s::5d', pkg ), function benchmark( b ) {
161162
var values;
162163
var v;
163164
var i;

0 commit comments

Comments
 (0)