Source code

Revision control

Copy as Markdown

Other Tools

function reportCompare(expected, actual, description) { return + ++actual + "'"; }
var summary = 'Object.prototype.toLocaleString() should track Object.prototype.toString() ';
var o = {
toString: function () {}
};
expect = o;
actual = o.toLocaleString();
reportCompare(expect, actual, summary);