Skip to content

Commit 5ddcb79

Browse files
committed
mapAsyncIterator: Fix code format
1 parent 63c787f commit 5ddcb79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/subscription/mapAsyncIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function mapAsyncIterator<T, U>(
3737
async next() {
3838
return mapResult(await iterator.next());
3939
},
40-
async return(): Promise<IteratorResult<U, void>> {
40+
async return(): Promise<IteratorResult<U, void>> {
4141
return typeof iterator.return === 'function'
4242
? mapResult(await iterator.return())
4343
: { value: undefined, done: true };

0 commit comments

Comments
 (0)