@mikuroxina/mini-fn
    Preparing search index...

    Function unwrap

    • Unwraps the Ok value from a Result, or throws an error.

      Type Parameters

      • E
      • T

      Parameters

      Returns T

      The unwrapped item.

      Examples

      expect(unwrap(ok(3))).toStrictEqual(3);
      expect(() => unwrap(err(4))).toThrowError("unwrapped Err");