(msg: string)
| 18 | |
| 19 | const LOG_PATH = dexterPath('gateway-debug.log'); |
| 20 | function debugLog(msg: string) { |
| 21 | appendFileSync(LOG_PATH, `${new Date().toISOString()} ${msg}\n`); |
| 22 | } |
| 23 | |
| 24 | function extractMentionedJids(message: WAMessage): string[] { |
| 25 | const rawMsg = message.message; |
no outgoing calls
no test coverage detected