(target: any)
| 113 | const XMLHttpRequestPrototype: any = XMLHttpRequest.prototype; |
| 114 | |
| 115 | function findPendingTask(target: any) { |
| 116 | return target[XHR_TASK]; |
| 117 | } |
| 118 | |
| 119 | let oriAddListener = XMLHttpRequestPrototype[ZONE_SYMBOL_ADD_EVENT_LISTENER]; |
| 120 | let oriRemoveListener = XMLHttpRequestPrototype[ZONE_SYMBOL_REMOVE_EVENT_LISTENER]; |
no outgoing calls
no test coverage detected
searching dependent graphs…