Pacote
    Preparing search index...
    • Combinator which turns a function that returns a Result<T, E> (with a single error) into one that returns a Validation<T, E> (with an array containting one or more errors).

      Type Parameters

      • T
      • E

      Parameters

      • check: (value: unknown) => Result<T, E>

        Function to lift.

      Returns (value: unknown) => Validation<T, E>

      Lifted function.