/** * Compare two json constructs */ export const identical = (a, b) => JSON.stringify(a) === JSON.stringify(b)