go
go copied to clipboard
Converting a string to json
Is it possible to convert a string like x=0,y=1,z=2 total=3 to json with this module:
{
x : 0,
y : 1,
z : 2
}