A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 458 B view raw
1module TaskPort.Extra exposing (..) 2 3import TaskPort 4 5 6errorToStringCustom : TaskPort.Error -> String 7errorToStringCustom err = 8 case err of 9 TaskPort.JSError jsErr -> 10 case jsErr of 11 TaskPort.ErrorObject _ errRecord -> 12 errRecord.message 13 14 TaskPort.ErrorValue _ -> 15 TaskPort.errorToString err 16 17 TaskPort.InteropError _ -> 18 TaskPort.errorToString err