In safari, I get the following error: > Exception with thrown value: Error: No input to stringify I'm using 2.10.0 (tried 1.9.2), and the line (3455:220) it breaks on (function `has`) is: ``` javascript stringifySupported = stringify(0) === "0" && stringify(new Number) === "0" && stringify(new String) == '""' && stringify(getClass) === undef && stringify(undef) === undef && stringify() === undef && stringify(value) === "1" && stringify([value]) == "[1]" && stringify([undef]) == "[null]" && stringify(null) == "null" && stringify([undef, getClass, null]) == "[null,null,null]" && stringify({ ``` I'm not sure why this happens.
In safari, I get the following error:
I'm using 2.10.0 (tried 1.9.2), and the line (3455:220) it breaks on (function
has) is:I'm not sure why this happens.