(event, value)
| 21 | |
| 22 | // The `warning` itself should not be skipped |
| 23 | const isLimitedWarning = (event, value) => |
| 24 | event === 'warning' && value.message.startsWith(PREFIX) |
| 25 | |
| 26 | export const MAX_EVENTS = 100 |
| 27 | export const PREFIX = `Cannot log more than ${MAX_EVENTS}` |
no outgoing calls
no test coverage detected
searching dependent graphs…