import { unzip } from "https://deno.land/x/ahh@v0.14.0/src/option.ts";
Returns the values of option
as a tuple of Option
s.
Examples
Example 1
Example 1
import { assertArrayIncludes } from "../test_deps.ts";
import O from "./option.ts";
const unzipped = O.unzip([2, 4]);
assertArrayIncludes(unzipped, [2, 4]);