Skip to content

Commit da33dba

Browse files
committed
Auto-generated commit
1 parent a2a89e5 commit da33dba

File tree

18 files changed

+206
-194
lines changed

18 files changed

+206
-194
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-07-21)
7+
## Unreleased (2025-08-12)
88

99
<section class="features">
1010

@@ -157,6 +157,8 @@ A total of 6 issues were closed in this release:
157157

158158
<details>
159159

160+
- [`77867ac`](https://github.com/stdlib-js/stdlib/commit/77867ac1767a186023f633dea30ddf860962aaed) - **docs:** remove trailing whitespace _(by Philipp Burckhardt)_
161+
- [`153c9c1`](https://github.com/stdlib-js/stdlib/commit/153c9c19e7e5bc138e18500cea598365d6df55d8) - **style:** fix indentation in JSON files _(by Philipp Burckhardt)_
160162
- [`4baa837`](https://github.com/stdlib-js/stdlib/commit/4baa837fde6fbe176add7b35f1f95f2e3b476ac0) - **chore:** fix EditorConfig lint errors [(#7696)](https://github.com/stdlib-js/stdlib/pull/7696) _(by Satyajeet Chavan, Athan Reines)_
161163
- [`708320e`](https://github.com/stdlib-js/stdlib/commit/708320e43d505cd6f390bf6014d58cb5e092cbaf) - **docs:** update related packages sections [(#7647)](https://github.com/stdlib-js/stdlib/pull/7647) _(by stdlib-bot, Philipp Burckhardt)_
162164
- [`d27d963`](https://github.com/stdlib-js/stdlib/commit/d27d963735240594f5b51a460c68e31493370a4a) - **remove:** remove `utils/some-in-by` _(by Neeraj Pathak)_

CONTRIBUTORS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ Abdelrahman Samir <[email protected]>
99
Abdul Kaium <[email protected]>
1010
Abhay Punia <[email protected]>
1111
Abhijit Raut <[email protected]>
12+
Abhishek G <[email protected]>
1213
Abhishek Jain <[email protected]>
1314
Adarsh Palaskar <[email protected]>
1415
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
1517
Ahmed Atwa <[email protected]>
1618
Ahmed Kashkoush <[email protected]>
1719
Ahmed Khaled <[email protected]>
@@ -30,6 +32,7 @@ Anshu Kumar <[email protected]>
3032
Anudeep Sanapala <[email protected]>
3133
Arihant Pal <[email protected]>
3234
Aryan Bhirud <[email protected]>
35+
3336
Athan Reines <[email protected]>
3437
Atharva Patil <[email protected]>
3538
@@ -118,6 +121,8 @@ Momtchil Momtchev <[email protected]>
118121
Muhammad Haris <[email protected]>
119122
Muhammad Taaha Tariq <[email protected]>
120123
Muhmmad Saad <[email protected]>
124+
NEEKUorAAYUSH <[email protected]>
125+
Nakul Krishnakumar <[email protected]>
121126
Naresh Jagadeesan <[email protected]>
122127
Naveen Kumar <[email protected]>
123128
Neeraj Pathak <[email protected]>
@@ -132,6 +137,7 @@ Oneday12323 <[email protected]>
132137
Ori Miles <[email protected]>
133138
Philipp Burckhardt <[email protected]>
134139
Pierre Forstmann <[email protected]>
140+
Pradyumn Prasad <[email protected]>
135141
Prajjwal Bajpai <[email protected]>
136142
Prajwal Kulkarni <[email protected]>
137143
Pranav Goswami <[email protected]>
@@ -167,6 +173,7 @@ Sai Avinash <[email protected]>
167173
Sai Srikar Dumpeti <[email protected]>
168174
Sanchay Ketan Sinha <[email protected]>
169175
Sarthak Paandey <[email protected]>
176+
Satyajeet Chavan <[email protected]>
170177
Saurabh Singh <[email protected]>
171178
Seyyed Parsa Neshaei <[email protected]>
172179
Shabareesh Shetty <[email protected]>
@@ -176,6 +183,7 @@ Shivansh <[email protected]>
176183
Shraddheya Shendre <[email protected]>
177184
Shubh Mehta <[email protected]>
178185
Shubham Mishra <[email protected]>
186+
Siddhesh waje <[email protected]>
179187
Sivam Das <[email protected]>
180188
Snehil Shah <[email protected]>
181189
Soumajit Chatterjee <[email protected]>
@@ -195,10 +203,12 @@ Utkarsh <http://[email protected]>
195203
Utkarsh Raj <[email protected]>
196204
UtkershBasnet <[email protected]>
197205
Vaibhav Patel <[email protected]>
206+
Vansh Choudhary <[email protected]>
198207
Vara Rahul Rajana <[email protected]>
199208
Varad Gupta <[email protected]>
200209
Vinit Pandit <[email protected]>
201210
Vivek Maurya <[email protected]>
211+
Wendy Yuchen Sun <[email protected]>
202212
Xiaochuan Ye <[email protected]>
203213
Yaswanth Kosuru <[email protected]>
204214
Yernar Yergaziyev <[email protected]>

append/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var append = require( '@stdlib/utils/append' );
4242

4343
#### append( collection1, collection2 )
4444

45-
Adds elements from one `collection` to the end of another `collection`. A `collection` may be either an [`Array`][mdn-array], [`Typed Array`][mdn-typed-array], or an array-like [`Object`][mdn-object] (i.e., an [`Object`][mdn-object] having a valid writable `length` property).
45+
Adds elements from one `collection` to the end of another `collection`. A `collection` may be either an [`Array`][mdn-array], [`Typed Array`][mdn-typed-array], or an array-like [`Object`][mdn-object] (i.e., an [`Object`][mdn-object] having a valid writable `length` property).
4646

4747
```javascript
4848
var arr = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];

convert-path/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The following output path conventions are supported:
6767

6868
- A Windows [extended-length path][extended-length-path] **cannot** be converted to either a `mixed` or `posix` path convention, as forward slashes cannot be used as path separators.
6969
- If a POSIX path begins with `/[A-Za-z]/` (e.g., `/c/`), the path is assumed to begin with a volume name.
70-
- The function makes no attempt to verify that a provided path is valid.
70+
- The function makes no attempt to verify that a provided path is valid.
7171

7272
</section>
7373

count-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ console.log( context.count );
120120
// returns { '[object Object]': 4 }
121121
```
122122

123-
while each group identifier is unique, all collection elements resolve to the same group because each group identifier serializes to the same `string`.
123+
while each group identifier is unique, all collection elements resolve to the same group because each group identifier serializes to the same `string`.
124124

125125
</section>
126126

group-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ console.log( context.count );
151151
// returns { '[object Object]': [ 'beep', 'boop', 'foo', 'bar' ] }
152152
```
153153

154-
while each group identifier is unique, all collection elements resolve to the same group because each group identifier serializes to the same `string`.
154+
while each group identifier is unique, all collection elements resolve to the same group because each group identifier serializes to the same `string`.
155155

156156
</section>
157157

group/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ var out = group( arr, opts, groups );
104104
// returns { '[object Object]': [ 'beep', 'boop', 'foo', 'bar' ] }
105105
```
106106

107-
while each "group" is unique, all collection elements resolve to the same group because each group identifier serializes to the same `string`.
107+
while each "group" is unique, all collection elements resolve to the same group because each group identifier serializes to the same `string`.
108108

109109
</section>
110110

keys/lib/excluded_keys.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[
2-
"console",
3-
"external",
4-
"frame",
5-
"frameElement",
6-
"frames",
7-
"innerHeight",
8-
"innerWidth",
9-
"outerHeight",
10-
"outerWidth",
11-
"pageXOffset",
12-
"pageYOffset",
13-
"parent",
14-
"scrollLeft",
15-
"scrollTop",
16-
"scrollX",
17-
"scrollY",
18-
"self",
19-
"webkitIndexedDB",
20-
"webkitStorageInfo",
21-
"window"
2+
"console",
3+
"external",
4+
"frame",
5+
"frameElement",
6+
"frames",
7+
"innerHeight",
8+
"innerWidth",
9+
"outerHeight",
10+
"outerWidth",
11+
"pageXOffset",
12+
"pageYOffset",
13+
"parent",
14+
"scrollLeft",
15+
"scrollTop",
16+
"scrollX",
17+
"scrollY",
18+
"self",
19+
"webkitIndexedDB",
20+
"webkitStorageInfo",
21+
"window"
2222
]

keys/lib/non_enumerable.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[
2-
"toString",
3-
"toLocaleString",
4-
"valueOf",
5-
"hasOwnProperty",
6-
"isPrototypeOf",
7-
"propertyIsEnumerable",
8-
"constructor"
2+
"toString",
3+
"toLocaleString",
4+
"valueOf",
5+
"hasOwnProperty",
6+
"isPrototypeOf",
7+
"propertyIsEnumerable",
8+
"constructor"
99
]

library-manifest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ var conf = manifest( './examples/manifest.json', conditions, opts );
151151
]
152152
}
153153
]
154-
}
154+
}
155155
```
156156
157157
- The function recursively walks the manifest dependency tree to resolve **all** source files, libraries, library paths, and include directories.

0 commit comments

Comments
 (0)