wrap
import { wrap } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/async_either.ts";Construct an AsyncEither<B, A> from a value A.
@example
import * as AE from "./async_either.ts";
const value = AE.wrap(1);
const result = await value(); // Right(1)