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

x/proc/mod.ts>Unzip

A better way to work with processes in Deno.
Go to Latest
type alias Unzip
import { type Unzip } from "https://deno.land/x/proc@0.21.3/mod.ts";

Conditional type for Enumerable.unzip.

definition: T extends [infer A, infer B] ? [Enumerable<A>, Enumerable<B>] : never