flatmap
import { flatmap } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/fn_either.ts";Chain the right result of one FnEither into another FnEither.
@example
import * as FE from "./fn_either.ts";
import { pipe } from "./fn.ts";
const result = pipe(
FE.id<string>(),
FE.flatmap(s => FE.right(s.length)),
)("Hello"); // Right(5)