id
import { id } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/fn_either.ts";Perform the same function as Reader ask. Given a type A (and optionally a type B), return a FnEither<[A], B, A>. This is useful for starting a FnEither flatmap.
@example
import * as FE from "./fn_either.ts";
import { pipe } from "./fn.ts";
const computation = FE.id<number>();
const result1 = computation(1); // Right(1);
const result2 = computation(2); // Right(2);