You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Closed #164 - added various tap functions for performing side effects for some of the modules that operate on variant types
Option - tap, tapSome (alias for tap), tapNone, bitap
AsyncData - tap functions for various combinations of values
AsyncResult - tap functions for various combinations of values
Ior - tap functions for various combinations of values
🐛 Bug fixes
Closed #101 - Unhandled promise rejection warnings - @mlms13 found the fix for the unhandled rejection warnings - the problem was that we were returning the failed promise value from the catch. Instead, we now return a Js.Promise.resolvedunit value in the success and failure handlers, after calling the onDone callback for the IO.
@esbullington - fixed a typo with AsyncResult.toIdle pointing at AsyncData.toBusy rather than AsyncData.toIdle