Scripting: Is the JavaScript JSON class available for scripts by default?
I'm writing a script and want to use JSON.stringify() etc., and I'm wondering if it is available as a built-in function for scripts (not talking about expressions here).
If I try it it works, but in the debugger it says that the definition is actually provided by the DUIK scripts that I have installed, so I don't know if
JSON.stringify()and
JSON.parse()will work on a machine that doesn't have DUIK installed (asking so I don't have to unistall and reinstall).
