Pacote
    Preparing search index...

    Function tryCatch

    • Creates a new instance of Result<T, Error> based on the result of a function fn that might throw an exception.

      Type Parameters

      • T

        Return type of the function being evaluated.

      • E = unknown

      Parameters

      • fn: () => T

        Function to evaluate.

      Returns Result<T, E>

      If an exception is thrown, an Err with the thrown error is returned. Otherwise, an Ok with the result of calling fn.