function just-diff is buggy when dealing with empty objects with no prototype
Open
- Dominant language
- JavaScript
- Stars
- 6.2k
- Forks
- 209
- PR merge metrics
- No merged PRs in 30d
Description
the `String` constructor will throws:
```javascript
var obj = Object.create(null);
String(obj)
```
consider using `Object.prototype.toString` will fix this.
Contributor guide
Assessment
This issue has not been assessed yet.