(id: any)
| 133 | return setTimeout(callback, delay, ...args); |
| 134 | }, |
| 135 | clearTimeout(id: any) { |
| 136 | clearTimeout(id); |
| 137 | }, |
| 138 | setImmediate() { |
| 139 | throw new Error('setImmediate is not implemented'); |
| 140 | }, |
no outgoing calls
no test coverage detected
searching dependent graphs…