(functionName: void | string, wrapperName: string)
| 894 | } |
| 895 | |
| 896 | function isReactWrapper(functionName: void | string, wrapperName: string) { |
| 897 | const hookName = parseHookName(functionName); |
| 898 | if (wrapperName === 'HostTransitionStatus') { |
| 899 | return hookName === wrapperName || hookName === 'FormStatus'; |
| 900 | } |
| 901 | |
| 902 | return hookName === wrapperName; |
| 903 | } |
| 904 | |
| 905 | function findPrimitiveIndex(hookStack: ParsedStackFrame[], hook: HookLogEntry) { |
| 906 | const stackCache = getPrimitiveStackCache(); |
no test coverage detected