We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2ba0851 + a5a6c10 commit b14b7e9Copy full SHA for b14b7e9
1 file changed
src/compiler/utilities.ts
@@ -2400,7 +2400,7 @@ namespace ts {
2400
* Serialize an object graph into a JSON string. This is intended only for use on an acyclic graph
2401
* as the fallback implementation does not check for circular references by default.
2402
*/
2403
- export const stringify: (value: any) => string = JSON && JSON.stringify
+ export const stringify: (value: any) => string = typeof JSON !== "undefined" && JSON.stringify
2404
? JSON.stringify
2405
: stringifyFallback;
2406
0 commit comments