()
| 54 | let cancelled = false; |
| 55 | |
| 56 | const handleInterrupt = () => { |
| 57 | cancelled = true; |
| 58 | console.log('\n\nAuthentication cancelled.'); |
| 59 | process.exit(0); |
| 60 | }; |
| 61 | |
| 62 | process.on('SIGINT', handleInterrupt); |
| 63 |
nothing calls this directly
no outgoing calls
no test coverage detected