Como remover __proto__ do objeto JavaScript
// Replacing the original prototype with null
MyConstructor.prototype = Object.create(null);
Expensive Emu
// Replacing the original prototype with null
MyConstructor.prototype = Object.create(null);