UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

8 lines • 275 B
import { zip as zipStatic } from '../observable/zip'; import { operate } from '../util/lift'; export function zip(...sources) { return operate((source, subscriber) => { zipStatic(source, ...sources).subscribe(subscriber); }); } //# sourceMappingURL=zip.js.map