import diff from "microdiff";
const obj1 = {
array:[{test2:0}]
};
const obj2 = {
array:[{test2:1}]
};
console.log(diff(obj1, obj2));
This ^ console logs an empty array. (repl)
Are there any plans on supporting objects within arrays? If no, do you know about another library that do support this?