import { R } from "https://deno.land/x/ahh@v0.10.0/src/result/mod.ts";
Returns whether res
is an Ok
.
Examples
import { R } from "./mod.ts";
console.log(R.isOk(1)); // true
console.log(R.isOk(Error())); // false
import { R } from "https://deno.land/x/ahh@v0.10.0/src/result/mod.ts";
Returns whether res
is an Ok
.
import { R } from "./mod.ts";
console.log(R.isOk(1)); // true
console.log(R.isOk(Error())); // false