修正异步事件的代理对象

This commit is contained in:
shijian 2023-12-15 09:00:21 +08:00
parent 41d5505844
commit 5e06b3a615
1 changed files with 5 additions and 2 deletions

View File

@ -32185,8 +32185,11 @@ new Promise(resolve=>{
has(target,prop){
return Reflect.has(event,prop);
},
ownKeys(target,prop){
return Reflect.ownKeys(event,prop);
ownKeys(target){
return Reflect.ownKeys(event);
},
getOwnPropertyDescriptor(target,prop){
return Reflect.getOwnPropertyDescriptor(event,prop);
},
});
}