Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
cham11ng committed Mar 25, 2021
1 parent 9f52d7b commit 1978596
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/promise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ export async function runSequentially<T>(promisers: Promiser<T>[]): Promise<T[]>
result.push(value);
} catch (err) {
if (!err.result) {
throw err
throw err;
}

result.push(err.result)
result.push(err.result);
}
}

Expand Down

0 comments on commit 1978596

Please sign in to comment.