Skip to content

Commit dd21f71

Browse files
committed
Auto-generated commit
1 parent c4e8240 commit dd21f71

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-12-02)
7+
## Unreleased (2025-12-04)
88

99
<section class="features">
1010

@@ -140,6 +140,7 @@ A total of 25 issues were closed in this release:
140140

141141
<details>
142142

143+
- [`299f5be`](https://github.com/stdlib-js/stdlib/commit/299f5be0502de56c91cab0204b8a9f4a51c07af4) - **bench:** refactor to use string interpolation in `assert/deep-has-own-property` [(#8747)](https://github.com/stdlib-js/stdlib/pull/8747) _(by Rohit R Bhat)_
143144
- [`2662635`](https://github.com/stdlib-js/stdlib/commit/266263512efb9fdc594bcd1aca66b9d78c21443c) - **bench:** refactor to use string interpolation in `assert/contains` [(#8683)](https://github.com/stdlib-js/stdlib/pull/8683) _(by Aman Singh, Athan Reines)_
144145
- [`f5f8c09`](https://github.com/stdlib-js/stdlib/commit/f5f8c0909696ae0d81abb67a5839f4317490ef2f) - **chore:** fix JavaScript lint errors [(#8561)](https://github.com/stdlib-js/stdlib/pull/8561) _(by kaushal-kumar-it, Athan Reines)_
145146
- [`a8f91a0`](https://github.com/stdlib-js/stdlib/commit/a8f91a0b6ea2aff9ca80a61c764b246d1789889b) - **docs:** fix return annotations in TSDoc examples _(by Philipp Burckhardt)_
@@ -314,7 +315,7 @@ A total of 25 issues were closed in this release:
314315

315316
### Contributors
316317

317-
A total of 24 people contributed to this release. Thank you to the following contributors:
318+
A total of 25 people contributed to this release. Thank you to the following contributors:
318319

319320
- Aman Singh
320321
- Anshu Kumar
@@ -330,6 +331,7 @@ A total of 24 people contributed to this release. Thank you to the following con
330331
- Payal Goswami
331332
- Philipp Burckhardt
332333
- Prajjwal Bajpai
334+
- Rohit R Bhat
333335
- RudrakshRaina07
334336
- Saptarshi Mula
335337
- Seth-Banker

deep-has-own-property/benchmark/benchmark.factory.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var bench = require( '@stdlib/bench' );
2424
var isBoolean = require( './../../is-boolean' ).isPrimitive;
2525
var isFunction = require( './../../is-function' );
2626
var randu = require( '@stdlib/random/base/randu' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var factory = require( './../lib' ).factory;
2930

3031

3132
// MAIN //
3233

33-
bench( pkg+':factory', function benchmark( b ) {
34+
bench( format( '%s:factory', pkg ), function benchmark( b ) {
3435
var path;
3536
var has;
3637
var i;
@@ -51,7 +52,7 @@ bench( pkg+':factory', function benchmark( b ) {
5152
b.end();
5253
});
5354

54-
bench( pkg+'::options:factory', function benchmark( b ) {
55+
bench( format( '%s::options:factory', pkg ), function benchmark( b ) {
5556
var opts;
5657
var has;
5758
var i;
@@ -76,7 +77,7 @@ bench( pkg+'::options:factory', function benchmark( b ) {
7677
b.end();
7778
});
7879

79-
bench( pkg+'::delimited-string:factory', function benchmark( b ) {
80+
bench( format( '%s::delimited-string:factory', pkg), function benchmark( b ) {
8081
var bool;
8182
var obj;
8283
var has;
@@ -107,7 +108,7 @@ bench( pkg+'::delimited-string:factory', function benchmark( b ) {
107108
b.end();
108109
});
109110

110-
bench( pkg+'::key-array:factory', function benchmark( b ) {
111+
bench( format( '%s::key-array:factory', pkg ), function benchmark( b ) {
111112
var bool;
112113
var path;
113114
var obj;
@@ -140,7 +141,7 @@ bench( pkg+'::key-array:factory', function benchmark( b ) {
140141
b.end();
141142
});
142143

143-
bench( pkg+'::custom-delimiter:factory', function benchmark( b ) {
144+
bench( format( '%s::custom-delimiter:factory', pkg ), function benchmark( b ) {
144145
var bool;
145146
var opts;
146147
var obj;

deep-has-own-property/benchmark/benchmark.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var bench = require( '@stdlib/bench' );
2424
var isBoolean = require( './../../is-boolean' ).isPrimitive;
2525
var randu = require( '@stdlib/random/base/randu' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var deepHasOwnProp = require( './../lib' );
2829

@@ -57,7 +58,7 @@ bench( pkg, function benchmark( b ) {
5758
b.end();
5859
});
5960

60-
bench( pkg+'::delimited-string', function benchmark( b ) {
61+
bench( format( '%s::delimited-string', pkg ), function benchmark( b ) {
6162
var bool;
6263
var obj;
6364
var i;
@@ -85,7 +86,7 @@ bench( pkg+'::delimited-string', function benchmark( b ) {
8586
b.end();
8687
});
8788

88-
bench( pkg+'::key-array', function benchmark( b ) {
89+
bench( format( '%s::key-array', pkg ), function benchmark( b ) {
8990
var bool;
9091
var path;
9192
var obj;
@@ -116,7 +117,7 @@ bench( pkg+'::key-array', function benchmark( b ) {
116117
b.end();
117118
});
118119

119-
bench( pkg+'::custom-delimiter', function benchmark( b ) {
120+
bench( format( '%s::custom-delimiter', pkg ), function benchmark( b ) {
120121
var bool;
121122
var opts;
122123
var obj;

0 commit comments

Comments
 (0)