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
As proposed by @kimkit, I also tried to move to NewObject and found this is exactly what I was also looking for, much easier use that the DynamicObject.
I believe this is something that could be added, and feel that it is not making any breaking changes:
Following our discussion on #506 about ToValue().
As proposed by @kimkit, I also tried to move to NewObject and found this is exactly what I was also looking for, much easier use that the DynamicObject.
I believe this is something that could be added, and feel that it is not making any breaking changes:
obj = r.ToValue(map)
, map can be partially modified, as seen in cannot push value to array #506obj = r.ToObject(map)
, map is now readonly but obj can be fully (?) modifiedNow, depending on what I'm looking for:
Some tests I've made. My implementation is probably naive, let me know if I missed something really important :)
The text was updated successfully, but these errors were encountered: