Checks whether the result is an Ok.
Ok
The result to be checked.
Whether the result is an Ok.
expect(isOk(ok(-3))).toStrictEqual(true);expect(isOk(err("Some error message"))).toStrictEqual(false); Copy
expect(isOk(ok(-3))).toStrictEqual(true);expect(isOk(err("Some error message"))).toStrictEqual(false);
Checks whether the result is an
Ok.