Avoid the use of the __proto__ property

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: typescript-best-practices/no-proto

Language: TypeScript

Severity: Warning

Category: Error Prone

Description

The __proto__ property has been deprecated as of ECMAScript 3.1.

Use a suitable alternative to __proto__ like Object.getPrototypeOf and Object.setPrototypeOf instead.

Non-Compliant Code Examples

var a = test.__proto__;
var a = test['__proto__'];
var a = test[`__proto__`];
test[`__proto__`] = function () {};

Compliant Code Examples

var a = test[__proto__];
var __proto__ = null;
foo[`__proto`] = null;
foo[`__proto__\n`] = null;
class C { #__proto__; foo() { this.#__proto__; } }
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis