Skip to content

Commit e55ceeb

Browse files
committed
Auto-generated commit
1 parent a6682e8 commit e55ceeb

File tree

5 files changed

+86
-22
lines changed

5 files changed

+86
-22
lines changed

.github/.keepalive

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

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

CHANGELOG.md

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

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-09-13)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#8061](https://github.com/stdlib-js/stdlib/issues/8061)
16+
17+
</section>
18+
19+
<!-- /.issues -->
20+
21+
<section class="commits">
22+
23+
### Commits
24+
25+
<details>
26+
27+
- [`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)_
28+
29+
</details>
30+
31+
</section>
32+
33+
<!-- /.commits -->
34+
35+
<section class="contributors">
36+
37+
### Contributors
38+
39+
A total of 1 person contributed to this release. Thank you to this contributor:
40+
41+
- Tyson Cung
42+
43+
</section>
44+
45+
<!-- /.contributors -->
46+
47+
</section>
48+
49+
<!-- /.release -->
50+
551
<section class="release" id="v0.2.2">
652

753
## 0.2.2 (2024-07-28)

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <[email protected]>
4242
Bryan Elee <[email protected]>
4343
Chinmay Joshi <[email protected]>
4444
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4546
4647
Daniel Hernandez Gomez <[email protected]>
4748
Daniel Killenberger <[email protected]>
@@ -65,6 +66,7 @@ Frank Kovacs <[email protected]>
6566
GK Bishnoi <[email protected]>
6667
GURU PRASAD SHARMA <[email protected]>
6768
69+
Gaurav Kaushik <[email protected]>
6870
Gautam Kaushik <[email protected]>
6971
Gautam sharma <[email protected]>
7072
@@ -179,6 +181,7 @@ Saurabh Singh <[email protected]>
179181
Seyyed Parsa Neshaei <[email protected]>
180182
Shabareesh Shetty <[email protected]>
181183
Shashank Shekhar Singh <[email protected]>
184+
Shaswata Panda <[email protected]>
182185
Shivam Ahir <[email protected]>
183186
184187
Shraddheya Shendre <[email protected]>
@@ -189,6 +192,7 @@ Sivam Das <[email protected]>
189192
Snehil Shah <[email protected]>
190193
Soumajit Chatterjee <[email protected]>
191194
Spandan Barve <[email protected]>
195+
Srinivas Batthula <[email protected]>
192196
Stephannie Jiménez Gacha <[email protected]>
193197
Suhaib Ilahi <[email protected]>
194198
Suraj Kumar <[email protected]>

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)