(oldObj, newObj, options)
| 469 | }; |
| 470 | |
| 471 | function diffJson(oldObj, newObj, options) { |
| 472 | return jsonDiff.diff(oldObj, newObj, options); |
| 473 | } // This function handles the presence of circular references by bailing out when encountering an |
| 474 | // object that is already on the "stack" of items being processed. Accepts an optional replacer |
| 475 | |
| 476 | function canonicalize(obj, stack, replacementStack, replacer, key) { |
nothing calls this directly
no outgoing calls
no test coverage detected