object.JsonParse
Last updated
⚠️ Not a method in the current OSL CLI. Use the
jsonpackage instead:json.parse().
When used on an object, returns the object.
JsonParse takes no parameters.
obj @= {a:1,b:2,c:3}
// setup the object
log obj.JsonParse()
// returns {a:1,b:2,c:3}
// returns the objectLast updated