Dustin
Results
3
comments of
Dustin
@Pajn You didn't need to make the IIFE async in your example. ``` let value = await (() => { if (task.isAsync) { return task.getAsyncValue() } else { return task.getValue()...