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
With this object as source, "G" will get changed to "config" after unpacking because G will be the key used to replace "config" key . var tt = { config:{ positions:{ F:200, G:200, }, A:{ test:123, test2:"ABC" } } }
With this object as source, "G" will get changed to "config" after unpacking because G will be the key used to replace "config" key .
var tt = { config:{ positions:{ F:200, G:200, }, A:{ test:123, test2:"ABC" } } }
results in (after unpacking)
var tt = { config:{ positions:{ F:200, config:200, }, A:{ test:123, test2:"ABC" } } }
The text was updated successfully, but these errors were encountered: