So entfernen Sie __Proto__ aus dem JavaScript -Objekt
// Replacing the original prototype with null
MyConstructor.prototype = Object.create(null);
Expensive Emu
// Replacing the original prototype with null
MyConstructor.prototype = Object.create(null);