Skip to content

Commit 6bc2c06

Browse files
committed
Missed linter error.
1 parent b33eff1 commit 6bc2c06

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/compiler/utilities.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2418,10 +2418,10 @@ namespace ts {
24182418
* Serialize an object graph into a JSON string. This is intended only for use on an acyclic graph
24192419
* as the fallback implementation does not check for circular references by default.
24202420
*/
2421-
export const stringify: (value: any) => string = JSON && JSON.stringify
2421+
export const stringify: (value: any) => string = JSON && JSON.stringify
24222422
? JSON.stringify
24232423
: stringifyFallback;
2424-
2424+
24252425
function hasCycles(value: any, stack: any[]) {
24262426
/* tslint:disable:no-null */
24272427
if (typeof value !== "object" || value === null) {

0 commit comments

Comments
 (0)