We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d11adc5 commit 5cc796bCopy full SHA for 5cc796b
src/diff.js
@@ -52,7 +52,7 @@ var sequenceDiff = function (a, b, p) {
52
var ops = [];
53
var path = p || '';
54
if(Immutable.is(a, b) || (a == b == null)){ return ops; }
55
- if(b.count() > 100) { return mapDiff(a.toMap(), b.toMap(), p); }
+ if(b.count() > 100) { return mapDiff(a, b, p); }
56
57
var lcsDiff = lcs.diff(a, b);
58
0 commit comments