(emitter)
| 23 | } |
| 24 | |
| 25 | function isWarned(emitter) { |
| 26 | for (const name in emitter) { |
| 27 | const listeners = emitter[name]; |
| 28 | if (listeners?.warned) return true; |
| 29 | } |
| 30 | return false; |
| 31 | } |
| 32 | |
| 33 | function getInterface(options) { |
| 34 | const fi = new FakeInput(); |
no outgoing calls
no test coverage detected