• Type guard that checks if an Option is Some<A>.

    Type Parameters

    • A

    Parameters

    • option: Option<A>

      The Option to check

    Returns option is Readonly<{ isSome: true; value: A }>

    true if the Option is Some<A>, false if it is None