right
import { right } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/sync_either.ts";Create a SyncEither that always succeeds with the given value.
@example
import { right } from "./sync_either.ts";
const success = right(42);
const result = success(); // Right(42)