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 problem seems to be printing was defaulting to Object.toString. I PRed a fix for that, still not the same behavior as .NET but I guess it's more informative for debugging.
In fable this compiles to
and prints
[object Object]
In .NET it would print something like
{ FirstName = "John"; LastName = "Doe" }
I am not entirely sure if this is solvable as the intention looks like converting anonymous records to plain objects and it helps with JS interop.
The text was updated successfully, but these errors were encountered: