8000 Auto-generated commit · stdlib-js/utils-async-reduce@1bb5a3d · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 1bb5a3d

Browse files
committed
Auto-generated commit
1 parent 878231f commit 1bb5a3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CONTRIBUTORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2929
Philipp Burckhardt <pburckhardt@outlook.com>
3030
Pranav Goswami <goswami.4@iitj.ac.in>
3131
Ricky Reusser <rsreusser@gmail.com>
32+
Robert Gislason <gztown2216@yahoo.com>
3233
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
3334
Ryan Seal <splrk@users.noreply.github.com>
3435
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
@@ -37,4 +38,3 @@ Stephannie Jiménez Gacha <steff456@hotmail.com>
3738
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
3839
orimiles5 <97595296+orimiles5@users.noreply.github.com>
3940
rei2hu <reimu@reimu.ws>
40-
Robert Gislason <gztown2216@yahoo.com>

docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ interface ReduceAsync {
225225
* };
226226
* reduceAsync( files, acc, read, done );
227227
*/
228-
<T = unknown, U = unknown, V = unknown>( collection: Collection<T>, initial: U, reducer: Reducer<T, U, V>, done: Callback<U> ): void; // tslint:disable-line:no-unnecessary-generics
228+
<T = unknown, U = unknown, V = unknown>( collection: Collection<T>, initial: U, reducer: Reducer<T, U, V>, done: Callback<U> ): void;
229229

230230
/**
231231
* Returns a function to apply a function against an accumulator and each element in a collection and return the accumulated result.
@@ -343,7 +343,7 @@ interface ReduceAsync {
343343
* };
344344
* reduceAsync( files, acc, done );
345345
*/
346-
factory<T = unknown, U = unknown, V = unknown>( reducer: Reducer<T, U, V> ): FactoryFunction<T, U>; // tslint:disable-line:no-unnecessary-generics
346+
factory<T = unknown, U = unknown, V = unknown>( reducer: Reducer<T, U, V> ): FactoryFunction<T, U>;
347347
}
348348

349349
/**

0 commit comments

Comments
 (0)
0