FluidFramework icon indicating copy to clipboard operation
FluidFramework copied to clipboard

fix(tree): restore deepEqual() compatibility

Open DLehenbauer opened this issue 1 year ago • 0 comments

Minimal changes to restore 'deepEqual()' compatibility for objects constructed without a subclass:

const Point = _.Point(.., { x: _.number, y: _.number });
assert.deepEqual(new Point({ x: 0, y: 0 }), { x: 0, y: 0 });

Resolve AB#6549

DLehenbauer avatar Feb 14 '24 21:02 DLehenbauer