修复一处bug

This commit is contained in:
shijian 2023-12-07 14:43:19 +08:00
parent f09a898ac9
commit 8a13261400
1 changed files with 1 additions and 1 deletions

View File

@ -32188,7 +32188,7 @@ new Promise(resolve=>{
return Reflect.set(event,prop,newValue);
},
deleteProperty(target,prop){
return Reflect.set(event,prop);
return Reflect.deleteProperty(event,prop);
},
defineProperty(target,prop,attributes){
return Reflect.defineProperty(event,prop,attributes);