jsdiff icon indicating copy to clipboard operation
jsdiff copied to clipboard

Chrome/Firefox extension to compare objects in memory with console.diff(old, new) devtools function

Results 3 jsdiff issues
Sort by recently updated
recently updated
newest added

Thanks for this extension, do you have any plans to support workers, e.g. selecting a worker in chrome and console.diff does not exist currently and is only available on 'top':...

```js jsdiff.diff({}, { 'Float16Array': new Float16Array([0, 1]), 'BigUint64Array': new BigUint64Array([0n, 1n]), 'BigInt64Array': new BigInt64Array([0n, 1n]), }); ``` ![Image](https://github.com/user-attachments/assets/1dc6ae13-5089-40c1-a6f3-4ae585432fdd)

```js jsdiff.diff({}, { 'set': new Set([0, 1]), 'map': new Map([['a',1],['b',2]]), }); ``` ![Image](https://github.com/user-attachments/assets/f7ecc412-757d-4503-909c-d79601704e60)