Как удалить __proto__ из объекта 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);