Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/proc/tools/deps/proc.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.20.43/tools/deps/proc.ts";

Conditional type for Enumerable.unzip.

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