Wolvenstone

Results 3 issues of Wolvenstone

The latest merge added the ES6 "const" keyword to the code. This caused our builds to fail. Was this intended? Maybe you could provide an ES5 compatible .min file via...

Adds a cancel function to the result of useAsyncAbortable() ``` const result = useAsyncAbortable(async (signal: AbortSignal) => {}, []); result.cancel(); ``` This aborts the AbortSignal that is passed into the...

Hi! I want to allow users to cancel running fetch requests in the UI. Even though the useAsyncAbortable sounds like the right place, it only handles aborting internally, and there...