Merge branch 'INDA-330-pii-update' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / utils / test / generator.ts
blob07ce55e8e2992d7fbd835f3e73ae65e4c40abe08
1 export async function asyncGeneratorToArray<T>(generator: AsyncGenerator<T>): Promise<T[]> {
2     const result = [];
3     for await (const item of generator) {
4         result.push(item);
5     }
6     return result;