()
| 65 | |
| 66 | const controller = new AbortController(); |
| 67 | const stopWatcher = () => { |
| 68 | console.log("\nStopping watcher..."); |
| 69 | controller.abort(); |
| 70 | }; |
| 71 | |
| 72 | process.once("SIGINT", stopWatcher); |
| 73 | process.once("SIGTERM", stopWatcher); |
nothing calls this directly
no outgoing calls
no test coverage detected