Cómo eliminar __proto__ del objeto JavaScript

// Replacing the original prototype with null
MyConstructor.prototype = Object.create(null);
Expensive Emu