Skip to content

Commit 4133c33

Browse files
committed
Auto-generated commit
1 parent f99b602 commit 4133c33

File tree

3 files changed

+35
-22
lines changed

3 files changed

+35
-22
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-09-11)
7+
## Unreleased (2025-09-13)
88

99
<section class="features">
1010

@@ -146,9 +146,9 @@
146146

147147
### Closed Issues
148148

149-
A total of 8 issues were closed in this release:
149+
A total of 9 issues were closed in this release:
150150

151-
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694), [#7914](https://github.com/stdlib-js/stdlib/issues/7914), [#8000](https://github.com/stdlib-js/stdlib/issues/8000)
151+
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694), [#7914](https://github.com/stdlib-js/stdlib/issues/7914), [#8000](https://github.com/stdlib-js/stdlib/issues/8000), [#8061](https://github.com/stdlib-js/stdlib/issues/8061)
152152

153153
</section>
154154

@@ -160,6 +160,7 @@ A total of 8 issues were closed in this release:
160160

161161
<details>
162162

163+
- [`e9406ad`](https://github.com/stdlib-js/stdlib/commit/e9406adc483d1626e3fa6a61abc9c99ed78b306e) - **chore:** fix JavaScript lint errors [(#8062)](https://github.com/stdlib-js/stdlib/pull/8062) _(by Tyson Cung)_
163164
- [`c4bf225`](https://github.com/stdlib-js/stdlib/commit/c4bf22523ecfbab88fc1c6bc72468c859e1836e9) - **docs:** remove example _(by Philipp Burckhardt)_
164165
- [`1b9a036`](https://github.com/stdlib-js/stdlib/commit/1b9a036d676b247bf502c4ede08635b99fa611ca) - **fix:** allow correct values for `returns` option _(by Philipp Burckhardt)_
165166
- [`5feedbc`](https://github.com/stdlib-js/stdlib/commit/5feedbcf7d1de8ab6259c96fa39a2fdc50e2c895) - **docs:** do not pass in options object to avoid cast error _(by Philipp Burckhardt)_
@@ -243,7 +244,7 @@ A total of 8 issues were closed in this release:
243244

244245
### Contributors
245246

246-
A total of 11 people contributed to this release. Thank you to the following contributors:
247+
A total of 12 people contributed to this release. Thank you to the following contributors:
247248

248249
- Athan Reines
249250
- DUDHAT HEMIL PRAVINKUMAR
@@ -254,6 +255,7 @@ A total of 11 people contributed to this release. Thank you to the following con
254255
- Philipp Burckhardt
255256
- Satyajeet Chavan
256257
- Srinivas Batthula
258+
- Tyson Cung
257259
- Uday Kakade
258260
- zhanggy
259261

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ Saurabh Singh <saurabhsraghuvanshi@gmail.com>
181181
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
182182
Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
183183
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
184+
Shaswata Panda <106397517+shaswata-26@users.noreply.github.com>
184185
Shivam Ahir <11shivam00@gmail.com>
185186
Shivansh <114570926+shiv343@users.noreply.github.com>
186187
Shraddheya Shendre <shendreshraddheya@gmail.com>

properties/benchmark/benchmark.js

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,31 +28,41 @@ var pkg = require( './../package.json' ).name;
2828
var properties = require( './../lib' );
2929

3030

31+
// FUNCTIONS //
32+
33+
/**
34+
* Constructor function for creating benchmark test objects.
35+
*
36+
* @private
37+
* @constructor
38+
* @returns {Foo} Foo instance
39+
*/
40+
function Foo() {
41+
this.a = 'beep';
42+
this.b = 'boop';
43+
this.c = [ 1, 2, 3 ];
44+
this.d = {};
45+
this.e = null;
46+
this.f = randu();
47+
defineProperty( this, 'g', {
48+
'value': 'bar',
49+
'configurable': true,
50+
'writable': true,
51+
'enumerable': false
52+
});
53+
return this;
54+
}
55+
56+
Foo.prototype.h = [ 'foo' ];
57+
58+
3159
// MAIN //
3260

3361
bench( pkg, function benchmark( b ) {
3462
var out;
3563
var obj;
3664
var i;
3765

38-
function Foo() {
39-
this.a = 'beep';
40-
this.b = 'boop';
41-
this.c = [ 1, 2, 3 ];
42-
this.d = {};
43-
this.e = null;
44-
this.f = randu();
45-
defineProperty( this, 'g', {
46-
'value': 'bar',
47-
'configurable': true,
48-
'writable': true,
49-
'enumerable': false
50-
});
51-
return this;
52-
}
53-
54-
Foo.prototype.h = [ 'foo' ];
55-
5666
obj = new Foo();
5767

5868
b.tic();

0 commit comments

Comments
 (0)