UNPKG

208 BJavaScriptView Raw
1var fails = require('../internals/fails');
2
3module.exports = !fails(function () {
4 function F() { /* empty */ }
5 F.prototype.constructor = null;
6 return Object.getPrototypeOf(new F()) !== F.prototype;
7});