Insofar as these should all demonstrate good conventions, the promise examples should all end with a catch call to surface any errors (the Vo and Co examples using generators are fine because those libraries will bubble up the errors for you if you don’t have a try... catch block).
Insofar as these should all demonstrate good conventions, the promise examples should all end with a
catch
call to surface any errors (the Vo and Co examples using generators are fine because those libraries will bubble up the errors for you if you don’t have atry... catch
block).