MCPcopy Create free account
hub / github.com/nodejs/node / isJsonEqual

Function isJsonEqual

test/fixtures/snapshot/typescript.js:21014–21017  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

21012 }
21013 ts.skipTypeChecking = skipTypeChecking;
21014 function isJsonEqual(a, b) {
21015 // eslint-disable-next-line no-null/no-null
21016 return a === b || typeof a === "object" && a !== null && typeof b === "object" && b !== null && ts.equalOwnProperties(a, b, isJsonEqual);
21017 }
21018 ts.isJsonEqual = isJsonEqual;
21019 /**
21020 * Converts a bigint literal string, e.g. `0x1234n`,

Callers 1

optionsHaveChangesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected