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
It would be nice to have a new diff type indicator for mismatched constructors.
kind: 'C' path, is set as they would be for 'E' differences lhs is the value of the lhs item's constructor.name property rhs as with lhs index and item are unused
Example:
function Something(value) { this.value = value; }
var lhs = new Something('foo');
var rhs = { value: 'foo' };
It would be nice to have a new diff type indicator for mismatched constructors.
kind: 'C'
path, is set as they would be for 'E' differences
lhs is the value of the lhs item's
constructor.name
propertyrhs as with lhs
index and item are unused
Example:
Diffing the two would produce:
The text was updated successfully, but these errors were encountered: