Skip to content

Commit be61ab2

Browse files
committed
Auto-generated commit
1 parent af65b28 commit be61ab2

4 files changed

Lines changed: 43 additions & 3 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ package.json.copy
2525
###############
2626
build/
2727
downloads/
28+
plans/
2829
reports/
2930
tmp/
3031

@@ -175,6 +176,10 @@ acs-*.bib
175176
*.ind
176177
*.ist
177178

179+
# Git #
180+
#######
181+
.worktrees
182+
178183
# Visual Studio #
179184
#################
180185
.vscode/

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-04-27)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`19216fd`](https://github.com/stdlib-js/stdlib/commit/19216fd118234a4dd38792e9e1d8f982617a5795) - **bench:** refactor to use string interpolation in `utils` [(#11409)](https://github.com/stdlib-js/stdlib/pull/11409) _(by Karan Anand, Athan Reines)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 2 people contributed to this release. Thank you to the following contributors:
28+
29+
- Athan Reines
30+
- Karan Anand
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.3">
641

742
## 0.2.3 (2026-02-07)

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
var bench = require( '@stdlib/bench-harness' );
2424
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
25+
var format = require( '@stdlib/string-format' );
2526
var pkg = require( './../package.json' ).name;
2627
var any = require( './../lib' );
2728

@@ -49,7 +50,7 @@ bench( pkg, function benchmark( b ) {
4950
b.end();
5051
});
5152

52-
bench( pkg+'::built-in', function benchmark( b ) {
53+
bench( format( '%s::built-in', pkg ), function benchmark( b ) {
5354
var bool;
5455
var arr;
5556
var i;
@@ -74,7 +75,7 @@ bench( pkg+'::built-in', function benchmark( b ) {
7475
b.end();
7576
});
7677

77-
bench( pkg+'::loop', function benchmark( b ) {
78+
bench( format( '%s::loop', pkg ), function benchmark( b ) {
7879
var bool;
7980
var arr;
8081
var i;

0 commit comments

Comments
 (0)