Source code

Revision control

Copy as Markdown

Other Tools

/*
* Any copyright is dedicated to the Public Domain.
* Author: Tom Schuster
*/
JSON.stringify(new Boolean(false), function(k, v) {
assertEq(typeof v, "object");
});
assertEq(Boolean.prototype.hasOwnProperty('toJSON'), false);
Object.prototype.toJSON = function() { return 2; };
assertEq(JSON.stringify(new Boolean(true)), "2");
if (typeof reportCompare === 'function')
reportCompare(true, true);