(Comp: unknown)
| 46 | // Attempts to stringify whatever not-really-a-component value we were given |
| 47 | // for logging in an error message |
| 48 | const stringifyComponent = (Comp: unknown) => { |
| 49 | try { |
| 50 | return JSON.stringify(Comp) |
| 51 | } catch (err) { |
| 52 | return String(Comp) |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | type EffectFunc = (...args: any[]) => void | ReturnType<React.EffectCallback> |
| 57 |
no outgoing calls
no test coverage detected
searching dependent graphs…