(path)
| 430 | isDev = electronIsDev; |
| 431 | } catch (error) { |
| 432 | // If electron-is-dev is not available, determine dev mode through other means |
| 433 | isDev = process.env.NODE_ENV === 'development' || /[\\/]electron/i.test(process.execPath); |
| 434 | } |
| 435 | |
| 436 | const DEBUG = false; // Set to true for development/debugging |
| 437 | const PING_INTERVAL = 30000; // 30 seconds |
| 438 | |
| 439 | function debugLog(...args) { |
| 440 | if (DEBUG) { |
| 441 | console.log(...args); |
| 442 | } |
no outgoing calls
no test coverage detected