wrap
import { wrap } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/either.ts";Construct a Right value from a value. This is an alias for right and is commonly used in contexts where you want to emphasize wrapping a value.
@example
import * as E from "./either.ts";
const result = E.wrap(42);
// { tag: "Right", right: 42 }