2018-05-19 00:03:05 -04:00

8 lines
131 B
JavaScript

class Query {
async *queryAll(ids) {
for (const id of ids) {
yield await this.query(id);
}
}
}