thomas-jeepe
Results
2
issues of
thomas-jeepe
Example code: ```js fastDeepEqual(Object.create(null, {a:true}), {a:true}) ``` This will throw an error, the line below calls `.valueOf()` which is not a method for objects with a null prototype. https://github.com/epoberezkin/fast-deep-equal/blob/master/src/index.jst#L51
`TextDecoder` is a newer browser feature and [supported in a few browsers.](https://caniuse.com/#feat=textencoder) From my testing in the browser (reading 100,000 different messages with a few text fields) `TextDecoder` seems to...
enhancement