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

x/proc/mod3.ts>Unzip

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

Conditional type for Enumerable.unzip.

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