修正异步事件的代理对象
This commit is contained in:
parent
41d5505844
commit
5e06b3a615
|
@ -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);
|
||||
},
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue