chore: deprecate run itests (#26444)

This commit is contained in:
Mohammad Sulaiman 2024-11-05 08:39:05 +02:00 committed by GitHub
parent f9a05068d6
commit 89f0b796bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
1656 changed files with 7496 additions and 1936 deletions

View file

@ -0,0 +1,5 @@
const payload = `{ "__proto__": null }`;
const obj = {};
console.log("Before: " + obj);
Object.assign(obj, JSON.parse(payload));
console.log("After: " + obj);