(matcher: string | RegExp)
| 315 | |
| 316 | try { |
| 317 | const isMatch = (matcher: string | RegExp) => (text: string) => |
| 318 | typeof matcher === 'string' ? text === matcher : matcher.test(text) |
| 319 | |
| 320 | let processMsg: (text: string) => boolean |
| 321 |
no outgoing calls
no test coverage detected