You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make diffing arrays of arrays generate smaller patches by default.
Previously, diffing arrays of arrays could generate larger than expected patches because the array identity was used as the hash function. It now uses JSON.stringify by default, as is done for arrays of objects. The hash can still be overridden when calling jiff.diff--this just makes the default more sane.