just
just copied to clipboard
function just-diff is buggy when dealing with empty objects with no prototype
the String constructor will throws:
var obj = Object.create(null);
String(obj)
consider using Object.prototype.toString will fix this.