Result.unwrap returns the value contained in an Ok and throws if the result is Err.
Result.unwrap
Ok
Err
Result<T,E>.unwrap = () => T;
div(1, 1).unwrap(); // => 1