Skip to content

Commit bb5f103

Browse files
committed
Auto-generated commit
1 parent 9cfc2a2 commit bb5f103

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
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+
- [`e7b7521`](https://github.com/stdlib-js/stdlib/commit/e7b75217911ae3e84967293e40893e9f4a36075b) - **bench:** refactor to use string interpolation in `array/base/accessor-getter` [(#8659)](https://github.com/stdlib-js/stdlib/pull/8659) _(by Rohit R Bhat)_
259260
- [`dc36299`](https://github.com/stdlib-js/stdlib/commit/dc36299e2dbbda5ab1482e5777334567529e5459) - **bench:** refactor to use string interpolation in `array/base/accessor-setter` [(#8662)](https://github.com/stdlib-js/stdlib/pull/8662) _(by Rohit R Bhat)_
260261
- [`ea0d5a6`](https://github.com/stdlib-js/stdlib/commit/ea0d5a623b80a5963e7079cd58cf29e7b01b5d57) - **bench:** refactor to use string interpolation in `array/base/any-is-entry` [(#8663)](https://github.com/stdlib-js/stdlib/pull/8663) _(by Aman Singh)_
261262
- [`565c8eb`](https://github.com/stdlib-js/stdlib/commit/565c8eb009e4aff052e40dfe1a282d3c9936cfac) - **bench:** refactor to use string interpolation in `array/base/any-has-property` [(#8660)](https://github.com/stdlib-js/stdlib/pull/8660) _(by Aman Singh)_

README.md

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

310310
---
311311

312-
## License
313-
314-
See [LICENSE][stdlib-license].
315-
316-
317312
## Copyright
318313

319314
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
@@ -360,8 +355,6 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
360355
[esm-readme]: https://github.com/stdlib-js/array/blob/esm/README.md
361356
[branches-url]: https://github.com/stdlib-js/array/blob/main/branches.md
362357

363-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array/main/LICENSE
364-
365358
<!-- <toc-links> -->
366359

367360
[@stdlib/array/base]: https://github.com/stdlib-js/array/tree/main/base

base/accessor-getter/benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ var imag = require( '@stdlib/complex/float64/imag' );
3333
var realf = require( '@stdlib/complex/float32/real' );
3434
var imagf = require( '@stdlib/complex/float32/imag' );
3535
var dtype = require( './../../../dtype' );
36+
var format = require( '@stdlib/string/format' );
3637
var pkg = require( './../package.json' ).name;
3738
var getter = require( './../lib' );
3839

@@ -70,7 +71,7 @@ bench( pkg, function benchmark( b ) {
7071
b.end();
7172
});
7273

73-
bench( pkg+':dtype=complex128', function benchmark( b ) {
74+
bench( format( '%s:dtype=complex128', pkg ), function benchmark( b ) {
7475
var arr;
7576
var buf;
7677
var get;
@@ -96,7 +97,7 @@ bench( pkg+':dtype=complex128', function benchmark( b ) {
9697
b.end();
9798
});
9899

99-
bench( pkg+':dtype=complex64', function benchmark( b ) {
100+
bench( format( '%s:dtype=complex64', pkg ), function benchmark( b ) {
100101
var arr;
101102
var buf;
102103
var get;

0 commit comments

Comments
 (0)