Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback

mux_async_iterable v1.0.1

Multiplexer of async iterables for JavaScript

Usage

Deno:

import { mux } from "https://raw.githubusercontent.com/kt3k/mux-async-iterator/master/mod.ts";

mux(foo(), bar(), baz()) // => returns merged async iterator of foo(), bar(), and baz()

Node:

const { mux } = require("mux-async-iterable");

mux(foo(), bar(), baz()) // => returns merged async iterator of foo(), bar(), and baz()

License

MIT