10 lines
195 B
JavaScript
10 lines
195 B
JavaScript
const oldGOPDs = Object.getOwnPropertyDescriptors;
|
|
Object.getOwnPropertyDescriptors = null;
|
|
|
|
try {
|
|
({ ...{ a: 1 }, b: 1, ...{} });
|
|
} finally {
|
|
Object.getOwnPropertyDescriptors = oldGOPDs;
|
|
}
|
|
|