fix: allow redefine Function.prototype.toString

This commit is contained in:
yanlong.wang 2025-02-24 11:05:36 +08:00
parent 6a1f391339
commit a2f810cce6
No known key found for this signature in database
GPG Key ID: C0A623C0BADF9F37

View File

@ -230,7 +230,7 @@ const DONT_MESS_WITH_THE_FUNDAMENTALS = `
get: ()=> fnToStringDesc.value,
set: ()=> 'Dont mess with this',
writeable: true,
configurable: false,
configurable: true,
enumerable: false,
});
})();