Skip to content

Commit 097f52b

Browse files
committed
Auto-generated commit
1 parent bb5f103 commit 097f52b

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-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+
- [`f774fb9`](https://github.com/stdlib-js/stdlib/commit/f774fb91d2d1704ee91588613a0ac0d68c766c6c) - **bench:** refactor to use string interpolation in `array/base/accessors` [(#8665)](https://github.com/stdlib-js/stdlib/pull/8665) _(by Rohit R Bhat)_
259260
- [`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)_
260261
- [`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)_
261262
- [`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)_

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,11 @@ 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+
312317
## Copyright
313318

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

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

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

base/accessors/benchmark/benchmark.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ var Float64Array = require( './../../../float64' );
2525
var Complex128Array = require( './../../../complex128' );
2626
var zeros = require( './../../../base/zeros' );
2727
var isPlainObject = require( '@stdlib/assert/is-plain-object' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var accessors = require( './../lib' );
3031

3132

3233
// MAIN //
3334

34-
bench( pkg+'::array', function benchmark( b ) {
35+
bench( format( '%s::array', pkg ), function benchmark( b ) {
3536
var values;
3637
var out;
3738
var i;
@@ -57,7 +58,7 @@ bench( pkg+'::array', function benchmark( b ) {
5758
b.end();
5859
});
5960

60-
bench( pkg+'::real_typed_array', function benchmark( b ) {
61+
bench( format( '%s::real_typed_array', pkg ), function benchmark( b ) {
6162
var values;
6263
var out;
6364
var i;
@@ -83,7 +84,7 @@ bench( pkg+'::real_typed_array', function benchmark( b ) {
8384
b.end();
8485
});
8586

86-
bench( pkg+'::complex_typed_array', function benchmark( b ) {
87+
bench( format( '%s::complex_typed_array', pkg ), function benchmark( b ) {
8788
var values;
8889
var out;
8990
var i;
@@ -109,7 +110,7 @@ bench( pkg+'::complex_typed_array', function benchmark( b ) {
109110
b.end();
110111
});
111112

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

0 commit comments

Comments
 (0)