( fingerprintMatchFound: boolean, storedHash: string | null | undefined, providedHash: string, )
| 1 | export function shouldUnclaim( |
| 2 | fingerprintMatchFound: boolean, |
| 3 | storedHash: string | null | undefined, |
| 4 | providedHash: string, |
| 5 | ): boolean { |
| 6 | return ( |
| 7 | fingerprintMatchFound || (storedHash != null && storedHash === providedHash) |
| 8 | ) |
| 9 | } |
no outgoing calls
no test coverage detected