export default function* (...iterables: Iterable[]) { for (const it of iterables) { yield* it; } }