(emitter)
| 45 | } |
| 46 | |
| 47 | function isWarned(emitter) { |
| 48 | for (const name in emitter) { |
| 49 | const listeners = emitter[name]; |
| 50 | if (listeners?.warned) return true; |
| 51 | } |
| 52 | return false; |
| 53 | } |
| 54 | |
| 55 | function getInterface(options) { |
| 56 | const fi = new FakeInput(); |
no outgoing calls
no test coverage detected
searching dependent graphs…