isRight
import { isRight } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/either.ts";Type guard that checks if an Either is a Right value.
@example
import * as E from "./either.ts";
const result = E.right(42);
if (E.isRight(result)) {
console.log("Success:", result.right);
}