Function
diffJson
(oldStr: string | object, newStr: string | object, options?: any)
Source from the content-addressed store, hash-verified
| 56 | options?: DiffJsonOptionsNonabortable |
| 57 | ): ChangeObject<string>[] |
| 58 | export function diffJson(oldStr: string | object, newStr: string | object, options?: any): undefined | ChangeObject<string>[] { |
| 59 | return jsonDiff.diff(oldStr, newStr, options); |
| 60 | } |
| 61 | |
| 62 | |
| 63 | // This function handles the presence of circular references by bailing out when encountering an |
Tested by
no test coverage detected