jsdiff
jsdiff copied to clipboard
Chrome/Firefox extension to compare objects in memory with console.diff(old, new) devtools function
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]), }); ``` 
```js jsdiff.diff({}, { 'set': new Set([0, 1]), 'map': new Map([['a',1],['b',2]]), }); ``` 