We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code:
import jsony, tables let t = {100: "aaa"}.toTable echo t.toJson
Actual:
{100:"aaa"}
^^^ json key uses quotes
Expected:
{"100":"aaa"}
The text was updated successfully, but these errors were encountered:
Probably the fix is to replace this dumpHook with a dumpKey:
jsony/src/jsony.nim
Line 792 in ea811be
Sorry, something went wrong.
fixes treeform#65 treeform#66
8770d7b
Table[int, T]
Successfully merging a pull request may close this issue.
Code:
Actual:
^^^ json key uses quotes
Expected:
The text was updated successfully, but these errors were encountered: