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
Performance profiling showed that computing large arrays diffs was very slow, with a lot of the time spent in deep-is due to a isArguments check and sorting object keys.
Also, deep-is has some interesting bugs when the arguments' types don't match, such as deepIs(1, []) returning true.
fast-deep-equal is much faster, more correct, and has a thorough suite of tests and performance benchmarks.
#267 - fix: Prevent issue when removing refs while processing them (@lesliekimm)