import { R } from "https://deno.land/x/ahh@v0.10.0/src/result/mod.ts";
Converts res
into a Some
if it is an
Ok
.
Examples
import { R } from "./mod.ts";
console.log(R.ok(1)); // 1
console.log(R.ok(Error())); // undefined
import { R } from "https://deno.land/x/ahh@v0.10.0/src/result/mod.ts";
Converts res
into a Some
if it is an
Ok
.
import { R } from "./mod.ts";
console.log(R.ok(1)); // 1
console.log(R.ok(Error())); // undefined