Skip to content

Commit ed331be

Browse files
committed
Auto-generated commit
1 parent 7d1f1b2 commit ed331be

File tree

23 files changed

+97
-96
lines changed

23 files changed

+97
-96
lines changed

CHANGELOG.md

Lines changed: 2 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-09-03)
7+
## Unreleased (2025-09-06)
88

99
<section class="features">
1010

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

160160
<details>
161161

162+
- [`6bb3c64`](https://github.com/stdlib-js/stdlib/commit/6bb3c64c915bb33715e5256fa8073e46b9a4d443) - **docs:** update examples in TSDoc comments in `utils/async` for doctesting _(by Philipp Burckhardt)_
162163
- [`18b2372`](https://github.com/stdlib-js/stdlib/commit/18b2372476178bcaa6bd7ddc69396f0e87dc93f2) - **feat:** add missing exports to namespaces _(by Philipp Burckhardt)_
163164
- [`57b828d`](https://github.com/stdlib-js/stdlib/commit/57b828d10a9b20f3003482557132723a79d27c66) - **chore:** fix JavaScript lint errors [(#8003)](https://github.com/stdlib-js/stdlib/pull/8003) _(by DUDHAT HEMIL PRAVINKUMAR, Athan Reines)_
164165
- [`0bc9823`](https://github.com/stdlib-js/stdlib/commit/0bc98238e0d5e4991912848ef6069a753343eaa1) - **feat:** add missing exports to `utils` namespace _(by Philipp Burckhardt)_

async/any-by-right/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ interface AnyByRightAsync {
260260
* };
261261
*
262262
* // Create a `anyByRightAsync` function which invokes the predicate function for each collection element sequentially:
263-
* var anyByRightAsync = factory( opts, predicate );
263+
* var anyByRight = anyByRightAsync.factory( opts, predicate );
264264
*
265265
* // Create a collection over which to iterate:
266266
* var files = [
@@ -281,7 +281,7 @@ interface AnyByRightAsync {
281281
* }
282282
*
283283
* // Try to read each element in `files`:
284-
* anyByRightAsync( files, done );
284+
* anyByRight( files, done );
285285
*/
286286
factory<T = unknown, V = unknown>( options: Options<T, V>, predicate: Predicate<T, V> ): FactoryFunction<T>;
287287

@@ -313,7 +313,7 @@ interface AnyByRightAsync {
313313
* }
314314
* }
315315
*
316-
* var anyByRightAsync = factory( predicate );
316+
* var anyByRight = anyByRightAsync.factory( predicate );
317317
*
318318
* // Create a collection over which to iterate:
319319
* var files = [
@@ -334,7 +334,7 @@ interface AnyByRightAsync {
334334
* }
335335
*
336336
* // Try to read each element in `files`:
337-
* anyByRightAsync( files, done );
337+
* anyByRight( files, done );
338338
*/
339339
factory<T = unknown, V = unknown>( predicate: Predicate<T, V> ): FactoryFunction<T>;
340340
}

async/any-by/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ interface AnyByAsync {
260260
* };
261261
*
262262
* // Create a `anyByAsync` function which invokes the predicate function for each collection element sequentially:
263-
* var anyByAsync = factory( opts, predicate );
263+
* var anyBy = anyByAsync.factory( opts, predicate );
264264
*
265265
* // Create a collection over which to iterate:
266266
* var files = [
@@ -281,7 +281,7 @@ interface AnyByAsync {
281281
* }
282282
*
283283
* // Try to read each element in `files`:
284-
* anyByAsync( files, done );
284+
* anyBy( files, done );
285285
*/
286286
factory<T = unknown, V = unknown>( options: Options<T, V>, predicate: Predicate<T, V> ): FactoryFunction<T>;
287287

@@ -313,7 +313,7 @@ interface AnyByAsync {
313313
* }
314314
* }
315315
*
316-
* var anyByAsync = factory( predicate );
316+
* var anyBy = anyByAsync.factory( predicate );
317317
*
318318
* // Create a collection over which to iterate:
319319
* var files = [
@@ -334,7 +334,7 @@ interface AnyByAsync {
334334
* }
335335
*
336336
* // Try to read each element in `files`:
337-
* anyByAsync( files, done );
337+
* anyBy( files, done );
338338
*/
339339
factory<T = unknown, V = unknown>( predicate: Predicate<T, V> ): FactoryFunction<T>;
340340
}

async/bifurcate-by/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ interface BifurcateByAsync {
285285
* };
286286
*
287287
* // Create a `bifurcateByAsync` function which invokes the predicate function for each collection element sequentially:
288-
* var bifurcateByAsync = factory( opts, predicate );
288+
* var bifurcateBy = bifurcateByAsync.factory( opts, predicate );
289289
*
290290
* // Create a collection over which to iterate:
291291
* var files = [
@@ -302,7 +302,7 @@ interface BifurcateByAsync {
302302
* }
303303
*
304304
* // Try to read each element in `files`:
305-
* bifurcateByAsync( files, done );
305+
* bifurcateBy( files, done );
306306
*/
307307
factory<T = unknown, V = unknown>( options: Options<T, V>, predicate: Predicate<T, V> ): FactoryFunction<T>;
308308

@@ -338,7 +338,7 @@ interface BifurcateByAsync {
338338
* };
339339
*
340340
* // Create a `bifurcateByAsync` function which invokes the predicate function for each collection element sequentially:
341-
* var bifurcateByAsync = factory( opts, predicate );
341+
* var bifurcateBy = bifurcateByAsync.factory( opts, predicate );
342342
*
343343
* // Create a collection over which to iterate:
344344
* var files = [
@@ -355,7 +355,7 @@ interface BifurcateByAsync {
355355
* }
356356
*
357357
* // Try to read each element in `files`:
358-
* bifurcateByAsync( files, done );
358+
* bifurcateBy( files, done );
359359
*/
360360
factory<T = unknown, V = unknown>( predicate: Predicate<T, V> ): FactoryFunction<T>;
361361
}

async/count-by/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ interface CountByAsync {
288288
* };
289289
*
290290
* // Create a `countByAsync` function which invokes the indicator function for each collection element sequentially:
291-
* var countByAsync = factory( opts, indicator );
291+
* var countBy = countByAsync.factory( opts, indicator );
292292
*
293293
* // Create a collection over which to iterate:
294294
* var files = [
@@ -305,7 +305,7 @@ interface CountByAsync {
305305
* }
306306
*
307307
* // Try to read each element in `files`:
308-
* countByAsync( files, done );
308+
* countBy( files, done );
309309
*/
310310
factory<T = unknown, V = unknown>( options: Options<T, V>, indicator: Indicator<T, V> ): FactoryFunction<T>;
311311

@@ -342,7 +342,7 @@ interface CountByAsync {
342342
* }
343343
*
344344
* // Create a `countByAsync` function which invokes the indicator function for each collection element sequentially:
345-
* var countByAsync = factory( indicator );
345+
* var countBy = countByAsync.factory( indicator );
346346
*
347347
* // Create a collection over which to iterate:
348348
* var files = [
@@ -359,7 +359,7 @@ interface CountByAsync {
359359
* }
360360
*
361361
* // Try to read each element in `files`:
362-
* countByAsync( files, done );
362+
* countBy( files, done );
363363
*/
364364
factory<T = unknown, V = unknown>( indicator: Indicator<T, V> ): FactoryFunction<T>;
365365
}

async/every-by-right/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ interface EveryByRightAsync {
261261
* };
262262
*
263263
* // Create an `everyByRightAsync` function which invokes the predicate function for each collection element sequentially:
264-
* var everyByRightAsync = factory( opts, predicate );
264+
* var everyByRight = everyByRightAsync.factory( opts, predicate );
265265
*
266266
* // Create a collection over which to iterate:
267267
* var files = [
@@ -282,7 +282,7 @@ interface EveryByRightAsync {
282282
* }
283283
*
284284
* // Try to read each element in `files`:
285-
* everyByRightAsync( files, done );
285+
* everyByRight( files, done );
286286
*/
287287
factory<T = unknown, V = unknown>( options: Options<T, V>, predicate: Predicate<T, V> ): FactoryFunction<T>;
288288

@@ -320,7 +320,7 @@ interface EveryByRightAsync {
320320
* };
321321
*
322322
* // Create an `everyByRightAsync` function which invokes the predicate function for each collection element sequentially:
323-
* var everyByRightAsync = factory( opts, predicate );
323+
* var everyByRight = everyByRightAsync.factory( opts, predicate );
324324
*
325325
* // Create a collection over which to iterate:
326326
* var files = [
@@ -341,7 +341,7 @@ interface EveryByRightAsync {
341341
* }
342342
*
343343
* // Try to read each element in `files`:
344-
* everyByRightAsync( files, done );
344+
* everyByRight( files, done );
345345
*/
346346
factory<T = unknown, V = unknown>( predicate: Predicate<T, V> ): FactoryFunction<T>;
347347
}

async/every-by/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ interface EveryByAsync {
261261
* };
262262
*
263263
* // Create an `everyByAsync` function which invokes the predicate function for each collection element sequentially:
264-
* var everyByAsync = factory( opts, predicate );
264+
* var everyBy = everyByAsync.factory( opts, predicate );
265265
*
266266
* // Create a collection over which to iterate:
267267
* var files = [
@@ -282,7 +282,7 @@ interface EveryByAsync {
282282
* }
283283
*
284284
* // Try to read each element in `files`:
285-
* everyByAsync( files, done );
285+
* everyBy( files, done );
286286
*/
287287
factory<T = unknown, V = unknown>( options: Options<T, V>, predicate: Predicate<T, V> ): FactoryFunction<T>;
288288

@@ -320,7 +320,7 @@ interface EveryByAsync {
320320
* };
321321
*
322322
* // Create an `everyByAsync` function which invokes the predicate function for each collection element sequentially:
323-
* var everyByAsync = factory( opts, predicate );
323+
* var everyBy = everyByAsync.factory( opts, predicate );
324324
*
325325
* // Create a collection over which to iterate:
326326
* var files = [
@@ -341,7 +341,7 @@ interface EveryByAsync {
341341
* }
342342
*
343343
* // Try to read each element in `files`:
344-
* everyByAsync( files, done );
344+
* everyBy( files, done );
345345
*/
346346
factory<T = unknown, V = unknown>( predicate: Predicate<T, V> ): FactoryFunction<T>;
347347
}

async/for-each-right/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ interface ForEachRightAsync {
258258
* };
259259
*
260260
* // Create a `forEachRightAsync` function which invokes `read` for each collection element sequentially:
261-
* var forEachRightAsync = factory( opts, read );
261+
* var forEachRight = forEachRightAsync.factory( opts, read );
262262
*
263263
* // Create a collection over which to iterate:
264264
* var files = [
@@ -275,7 +275,7 @@ interface ForEachRightAsync {
275275
* }
276276
*
277277
* // Run `read` for each element in `files`:
278-
* forEachRightAsync( files, done );
278+
* forEachRight( files, done );
279279
*/
280280
factory<T = unknown, V = unknown>( options: Options<T, V>, fcn: Fcn<T, V> ): FactoryFunction;
281281

@@ -309,7 +309,7 @@ interface ForEachRightAsync {
309309
* }
310310
*
311311
* // Create a `forEachRightAsync` function which invokes `read` for each collection element sequentially:
312-
* var forEachRightAsync = factory( read );
312+
* var forEachRight = forEachRightAsync.factory( read );
313313
*
314314
* // Create a collection over which to iterate:
315315
* var files = [
@@ -326,7 +326,7 @@ interface ForEachRightAsync {
326326
* }
327327
*
328328
* // Run `read` for each element in `files`:
329-
* forEachRightAsync( files, done );
329+
* forEachRight( files, done );
330330
*/
331331
factory<T = unknown, V = unknown>( fcn: Fcn<T, V> ): FactoryFunction;
332332
}

async/for-each/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ interface ForEachAsync {
258258
* };
259259
*
260260
* // Create a `forEachAsync` function which invokes `read` for each collection element sequentially:
261-
* var forEachAsync = factory( opts, read );
261+
* var forEach = forEachAsync.factory( opts, read );
262262
*
263263
* // Create a collection over which to iterate:
264264
* var files = [
@@ -275,7 +275,7 @@ interface ForEachAsync {
275275
* }
276276
*
277277
* // Run `read` for each element in `files`:
278-
* forEachAsync( files, done );
278+
* forEach( files, done );
279279
*/
280280
factory<T = unknown, V = unknown>( options: Options<T, V>, fcn: Fcn<T, V> ): FactoryFunction;
281281

@@ -309,7 +309,7 @@ interface ForEachAsync {
309309
* }
310310
*
311311
* // Create a `forEachAsync` function which invokes `read` for each collection element sequentially:
312-
* var forEachAsync = factory( read );
312+
* var forEach = forEachAsync.factory( read );
313313
*
314314
* // Create a collection over which to iterate:
315315
* var files = [
@@ -326,7 +326,7 @@ interface ForEachAsync {
326326
* }
327327
*
328328
* // Run `read` for each element in `files`:
329-
* forEachAsync( files, done );
329+
* forEach( files, done );
330330
*/
331331
factory<T = unknown, V = unknown>( fcn: Fcn<T, V> ): FactoryFunction;
332332
}

0 commit comments

Comments
 (0)