Takes a Difference object and returns a string using stringifyDifferenceDictionary.
Difference
stringifyDifferenceDictionary
stringifyDifference({ kind: "D", lhs: "🟢", path: ["🟢", "🟩"],}); // "🟢.🟩 is missing."stringifyDifference({ kind: "X", error: "❌",}); // "there was an uncaught error: ❌."
Formatted string.
Difference object.
Takes a
Difference
object and returns a string usingstringifyDifferenceDictionary
.Example
Returns
Formatted string.