The usage of __proto__ property is not recommended JS-0084
Anti-pattern
Minor
5 months ago2 years old
Found the use of '__proto__' property
 9709        Object.setPrototypeOf ||
 9710        ({ __proto__: [] } instanceof Array &&
 9711          function (d, b) {
 9712            d.__proto__ = b 9713          }) ||
 9714        function (d, b) {
 9715          for (const p in b) b.hasOwnProperty(p) && (d[p] = b[p])