UNPKG

293 BJavaScriptView Raw
1import { AsyncIterableX } from './asynciterablex';
2class EmptyAsyncIterable extends AsyncIterableX {
3 async *[Symbol.asyncIterator]() {
4 // eslint-disable-next-line no-empty
5 }
6}
7export function empty() {
8 return new EmptyAsyncIterable();
9}
10
11//# sourceMappingURL=empty.mjs.map