(fn)
| 235 | removeEventListener() {}, |
| 236 | dispatchEvent() {}, |
| 237 | setTimeout(fn) { |
| 238 | if (typeof fn === 'function') { |
| 239 | try { |
| 240 | fn(); |
| 241 | } catch (_) {} |
| 242 | } |
| 243 | return 1; |
| 244 | }, |
| 245 | clearTimeout() {}, |
| 246 | setInterval(fn) { |
| 247 | if (typeof fn === 'function') { |
nothing calls this directly
no outgoing calls
no test coverage detected