isSome
import { isSome } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/datum.ts";Check if a Datum has a value (Refresh or Replete).
@example
import { isSome, initial, refresh, replete } from "./datum.ts";
console.log(isSome(initial)); // false
console.log(isSome(refresh("data"))); // true
console.log(isSome(replete("data"))); // true