Skip to content

Commit dbb0412

Browse files
committed
Auto-generated commit
1 parent 06f5cf7 commit dbb0412

10 files changed

+140
-20
lines changed

.editorconfig

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ indent_style = tab
8686
[*.{f,f.txt}]
8787
indent_style = space
8888
indent_size = 2
89-
insert_final_newline = false
9089

9190
# Set properties for shell files:
9291
[*.{sh,sh.txt}]
@@ -121,7 +120,7 @@ indent_style = tab
121120
[*.{md,md.txt}]
122121
indent_style = space
123122
indent_size = 4
124-
trim_trailing_whitespace = false
123+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
125124
126125
# Set properties for `usage.txt` files:
127126
[usage.txt]

.github/.keepalive

-1
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
We are excited about your pull request, but unfortunately we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/function/ctor) of the main repository where we’ll review and provide feedback.
44

5-
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/development.md) for help on developing stdlib.
5+
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/contributing/development.md) for help on developing stdlib.
66

77
We look forward to receiving your contribution! :smiley:

.github/workflows/test_install.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
env:
5151
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
5252

53-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
54-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
53+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
54+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5555

5656
# Define the sequence of job steps...
5757
steps:

.github/workflows/test_published_package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
env:
4848
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
4949

50-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
51-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
50+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
51+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5252

5353
# Define the job's steps:
5454
steps:

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,7 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191+
192+
# Cursor #
193+
##########
194+
.cursorignore

CHANGELOG.md

+47
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,53 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-04-29)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#6851](https://github.com/stdlib-js/stdlib/issues/6851)
16+
17+
</section>
18+
19+
<!-- /.issues -->
20+
21+
<section class="commits">
22+
23+
### Commits
24+
25+
<details>
26+
27+
- [`2336365`](https://github.com/stdlib-js/stdlib/commit/2336365a52edb3ff279cedb33d8f60a74245b458) - **chore:** fix EditorConfig lint errors [(#6859)](https://github.com/stdlib-js/stdlib/pull/6859) _(by Lalit Narayan Yadav, Athan Reines)_
28+
29+
</details>
30+
31+
</section>
32+
33+
<!-- /.commits -->
34+
35+
<section class="contributors">
36+
37+
### Contributors
38+
39+
A total of 2 people contributed to this release. Thank you to the following contributors:
40+
41+
- Athan Reines
42+
- Lalit Narayan Yadav
43+
44+
</section>
45+
46+
<!-- /.contributors -->
47+
48+
</section>
49+
50+
<!-- /.release -->
51+
552
<section class="release" id="v0.2.2">
653

754
## 0.2.2 (2024-07-26)

CONTRIBUTORS

+80-9
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,32 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aadish Jain <[email protected]>
6+
Aarya Balwadkar <[email protected]>
57
Aayush Khanna <[email protected]>
8+
Abdelrahman Samir <[email protected]>
9+
Abdul Kaium <[email protected]>
10+
Abhay Punia <[email protected]>
611
Abhijit Raut <[email protected]>
12+
Abhishek Jain <[email protected]>
713
Adarsh Palaskar <[email protected]>
814
Aditya Sapra <[email protected]>
915
Ahmed Atwa <[email protected]>
1016
Ahmed Kashkoush <[email protected]>
17+
Ahmed Khaled <[email protected]>
18+
Aksshay Balasubramanian <[email protected]>
1119
Aleksandr <[email protected]>
1220
Ali Salesi <[email protected]>
21+
AlyAbdelmoneim <[email protected]>
1322
Aman Bhansali <[email protected]>
23+
AmanBhadkariya <[email protected]>
1424
Amit Jimiwal <[email protected]>
25+
Anshu Kumar <[email protected]>
26+
Anshu Kumar <[email protected]>
1527
Anudeep Sanapala <[email protected]>
1628
Athan Reines <[email protected]>
1729
30+
Bhavishy Agrawal <[email protected]>
1831
Brendan Graetz <[email protected]>
1932
Bruno Fenzl <[email protected]>
2033
Bryan Elee <[email protected]>
@@ -24,19 +37,37 @@ Dan Rose <[email protected]>
2437
Daniel Killenberger <[email protected]>
2538
Daniel Yu <[email protected]>
2639
Debashis Maharana <[email protected]>
40+
Deep Trivedi <[email protected]>
41+
Desh Deepak Kant <[email protected]>
42+
43+
Dhanyabad behera <[email protected]>
44+
Dhruv Arvind Singh <[email protected]>
45+
Dhruvil Mehta <[email protected]>
46+
Dipjyoti Das <[email protected]>
47+
Divyansh Seth <[email protected]>
2748
Dominic Lim <[email protected]>
2849
Dominik Moritz <[email protected]>
2950
Dorrin Sotoudeh <[email protected]>
3051
EuniceSim142 <[email protected]>
3152
Frank Kovacs <[email protected]>
53+
GK Bishnoi <[email protected]>
54+
GURU PRASAD SHARMA <[email protected]>
55+
56+
Gautam sharma <[email protected]>
3257
Golden Kumar <[email protected]>
3358
Gunj Joshi <[email protected]>
34-
Gururaj Gurram <[email protected]>
59+
Gururaj Gurram <[email protected]>
60+
Haroon Rasheed <[email protected]>
61+
3562
3663
Harshita Kalani <[email protected]>
64+
Hemant M Mehta <[email protected]>
3765
Hridyanshu <[email protected]>
3866
Jaimin Godhani <[email protected]>
67+
Jaison D Souza <[email protected]>
68+
Jalaj Kumar <[email protected]>
3969
James Gelok <[email protected]>
70+
4071
Jaysukh Makvana <[email protected]>
4172
Jenish Thapa <[email protected]>
4273
Jithin KS <[email protected]>
@@ -45,55 +76,83 @@ Joey Reed <[email protected]>
4576
Jordan Gallivan <[email protected]>
4677
Joris Labie <[email protected]>
4778
Justin Dennison <[email protected]>
79+
Justyn Shelby <[email protected]>
80+
Karan Anand <[email protected]>
81+
Karan Yadav <[email protected]>
4882
Karthik Prakash <[email protected]>
49-
83+
Kaushikgtm <[email protected]>
84+
Kavyansh-Bagdi <[email protected]>
5085
Kohantika Nath <[email protected]>
86+
Krishnam Agarwal <[email protected]>
5187
Krishnendu Das <[email protected]>
5288
Kshitij-Dale <[email protected]>
53-
89+
Lovelin Dhoni J B <[email protected]>
90+
91+
Mahfuza Humayra Mohona <[email protected]>
5492
Manik Sharma <[email protected]>
5593
Manvith M <[email protected]>
5694
Marcus Fantham <[email protected]>
5795
Matt Cochrane <[email protected]>
5896
Mihir Pandit <[email protected]>
5997
Milan Raj <[email protected]>
98+
Mohammad Bin Aftab <[email protected]>
6099
Mohammad Kaif <[email protected]>
61100
Momtchil Momtchev <[email protected]>
62101
Muhammad Haris <[email protected]>
102+
Muhammad Taaha Tariq <[email protected]>
103+
Muhmmad Saad <[email protected]>
63104
Naresh Jagadeesan <[email protected]>
105+
Naveen Kumar <[email protected]>
64106
Neeraj Pathak <[email protected]>
107+
NirvedMishra <[email protected]>
65108
Nishant Shinde <[email protected]>
109+
Nishant singh <[email protected]>
110+
Nishchay Rajput <[email protected]>
66111
Nithin Katta <[email protected]>
67112
Nourhan Hasan <[email protected]>
68113
Ognjen Jevremović <[email protected]>
69114
Oneday12323 <[email protected]>
70115
Ori Miles <[email protected]>
71116
Philipp Burckhardt <[email protected]>
117+
Prajjwal Bajpai <[email protected]>
72118
Prajwal Kulkarni <[email protected]>
73-
Pranav Goswami <[email protected]>
74-
75-
119+
Pranav Goswami <[email protected]>
120+
Pranjal Jha <[email protected]>
121+
Prashant Kumar Yadav <[email protected]>
122+
PrathamBhamare <[email protected]>
123+
Pratik Singh <[email protected]>
76124
Pratyush Kumar Chouhan <[email protected]>
77-
125+
Pravesh Kunwar <[email protected]>
126+
Priyansh Prajapati <[email protected]>
78127
Priyanshu Agarwal <[email protected]>
128+
Pulkit Gupta <[email protected]>
79129
Pushpendra Chandravanshi <[email protected]>
130+
Rahul Kumar <[email protected]>
80131
Raunak Kumar Gupta <[email protected]>
81132
Rejoan Sardar <[email protected]>
82133
Ricky Reusser <[email protected]>
83134
Ridam Garg <[email protected]>
84135
136+
Rishav Tarway <[email protected]>
85137
Robert Gislason <[email protected]>
86138
Roman Stetsyk <[email protected]>
139+
87140
Rutam Kathale <[email protected]>
88141
Ruthwik Chikoti <[email protected]>
89142
Ryan Seal <[email protected]>
90143
Rylan Yang <[email protected]>
144+
SAHIL KUMAR <[email protected]>
145+
SHIVAM YADAV <[email protected]>
146+
Sahil Goyal <[email protected]>
147+
Sai Avinash <[email protected]>
91148
Sai Srikar Dumpeti <[email protected]>
149+
Sanchay Ketan Sinha <[email protected]>
92150
Sarthak Paandey <[email protected]>
93151
Saurabh Singh <[email protected]>
94152
Seyyed Parsa Neshaei <[email protected]>
153+
Shabareesh Shetty <[email protected]>
95154
Shashank Shekhar Singh <[email protected]>
96-
155+
Shivam Ahir <[email protected]>
97156
Shraddheya Shendre <[email protected]>
98157
Shubh Mehta <[email protected]>
99158
Shubham Mishra <[email protected]>
@@ -102,7 +161,9 @@ Snehil Shah <[email protected]>
102161
Soumajit Chatterjee <[email protected]>
103162
Spandan Barve <[email protected]>
104163
Stephannie Jiménez Gacha <[email protected]>
164+
Suhaib Ilahi <[email protected]>
105165
Suraj Kumar <[email protected]>
166+
Tanishq Ahuja <[email protected]>
106167
Tirtadwipa Manunggal <[email protected]>
107168
Tudor Pagu <[email protected]>
108169
Tufailahmed Bargir <[email protected]>
@@ -112,10 +173,20 @@ UtkershBasnet <[email protected]>
112173
Vaibhav Patel <[email protected]>
113174
Varad Gupta <[email protected]>
114175
Vinit Pandit <[email protected]>
176+
Vivek Maurya <[email protected]>
115177
Xiaochuan Ye <[email protected]>
116178
Yaswanth Kosuru <[email protected]>
117179
Yernar Yergaziyev <[email protected]>
118-
180+
Yugal Kaushik <[email protected]>
181+
Yuvi Mittal <[email protected]>
182+
devshree-bhati <[email protected]>
183+
184+
ekambains <[email protected]>
185+
fadiothman22 <[email protected]>
186+
iraandrushko <[email protected]>
187+
lohithganni <[email protected]>
119188
olenkabilonizhka <[email protected]>
189+
pranav-1720 <[email protected]>
190+
rahulrangers <[email protected]>
120191
121192

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ var v = add.toString();
224224
- In pre-ES2015 environments, only plain identifiers (without defaults) are valid JavaScript parameters.
225225
- Creating `Function` objects with the `Function` constructor is less efficient than declaring a function via a function expression or a function statement.
226226
- The `Function` constructor can be invoked without the `new` operator (using `new` and not using `new` both return a new `Function` object).
227-
- The `Function` constructor creates functions which execute in the **global scope**. Hence, created functions **cannot** access variables local to the scope in which functions were created.
227+
- The `Function` constructor creates functions which execute in the **global scope**. Hence, created functions **cannot** access variables local to the scope in which functions were created.
228228

229229
</section>
230230

@@ -293,7 +293,7 @@ See [LICENSE][stdlib-license].
293293

294294
## Copyright
295295

296-
Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
296+
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
297297

298298
</section>
299299

0 commit comments

Comments
 (0)