isLeft
import { isLeft } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/either.ts";Type guard that checks if an Either is a Left value.
@example
import * as E from "./either.ts";
const result = E.left("error");
if (E.isLeft(result)) {
console.log("Error:", result.left);
}