Skip to content

Commit 373ebd5

Browse files
committed
Auto-generated commit
1 parent 661cbc0 commit 373ebd5

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

CHANGELOG.md

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

258258
<details>
259259

260+
- [`3138d95`](https://github.com/stdlib-js/stdlib/commit/3138d952a5f61a9f145424e7a4611e9727d8ab49) - **bench:** refactor to use string interpolation in `array/base/filled-by` [(#8901)](https://github.com/stdlib-js/stdlib/pull/8901) _(by Rohit R Bhat)_
260261
- [`c377b56`](https://github.com/stdlib-js/stdlib/commit/c377b5679b136519dda29dd875dc4465693957e3) - **bench:** refactor to use string interpolation in `array/base/filled2d` [(#8902)](https://github.com/stdlib-js/stdlib/pull/8902) _(by Rohit R Bhat, Philipp Burckhardt)_
261262
- [`4e547d4`](https://github.com/stdlib-js/stdlib/commit/4e547d4b67f772a0950a4f2c6b1744620c827667) - **bench:** refactor to use string interpolation in `array/base/cusome-by` [(#8903)](https://github.com/stdlib-js/stdlib/pull/8903) _(by Aman Singh)_
262263
- [`b942e0e`](https://github.com/stdlib-js/stdlib/commit/b942e0e9a0a88d7b2f4f8557eaee1f9e76c156e8) - **bench:** refactor to use string interpolation in `array/base/fill` [(#8898)](https://github.com/stdlib-js/stdlib/pull/8898) _(by Rohit R Bhat, Athan Reines)_

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/filled-by/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isArray = require( '@stdlib/assert/is-array' );
2626
var constantFunction = require( '@stdlib/utils/constant-function' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var filledBy = require( './../lib' );
2930

@@ -91,7 +92,7 @@ function main() {
9192
len = pow( 10, i );
9293

9394
f = createBenchmark( len );
94-
bench( pkg+':len='+len, f );
95+
bench( format( '%s:len=%d', pkg, len ), f );
9596
}
9697
}
9798

0 commit comments

Comments
 (0)