Version 3.4.0 is behind the current release: jump to latest version (3.5.0).
function until
thefrontside/effectionIt can be used to treat a promise as an operation. This function
is a replacement to the deprecated call(promise)
function form.
Examples
Example 1
let response = yield* until(fetch('https://google.com'));
Type Parameters
T
Parameters
promise: PromiseLike<T>
Return Type
Operation<T>