blob: 6cd8f404a45b344051cf119b70106766ad44e203 [file] [log] [blame]
var fails = require('../internals/fails');
module.exports = !fails(function () {
function F() { /* empty */ }
F.prototype.constructor = null;
return Object.getPrototypeOf(new F()) !== F.prototype;
});