(message: string)
| 126 | } |
| 127 | |
| 128 | function threadDepthFromPlainText(message: string): boolean { |
| 129 | if (!message) return false; |
| 130 | return matchesThreadDepthLimitError(message.toLowerCase()); |
| 131 | } |
| 132 | |
| 133 | function messageLooksLikeThreadDepth(message: string): boolean { |
| 134 | if (threadDepthFromPlainText(message)) return true; |
no test coverage detected