puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
29 lines • 694 B
JavaScript
/**
* @internal
*/
export class AsyncIterableUtil {
static async *map(iterable, map) {
for await (const value of iterable) {
yield await map(value);
}
}
static async *flatMap(iterable, map) {
for await (const value of iterable) {
yield* map(value);
}
}
static async collect(iterable) {
const result = [];
for await (const value of iterable) {
result.push(value);
}
return result;
}
static async first(iterable) {
for await (const value of iterable) {
return value;
}
return;
}
}
//# sourceMappingURL=AsyncIterableUtil.js.map