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
The previous encode function had a type signature which assumed it would always succeed, but the underlying function used from JavaScript could throw an exception. That exception is now caught and the encode function returns a Maybe String. To recover the previous implementation when you know the encoding is valid, you can use unsafePartial on the Maybe result. (@nsaunders)