(value: mixed)
| 33 | |
| 34 | // $FlowFixMe[incompatible-return] only called in DEV, so void return is not possible. |
| 35 | function willCoercionThrow(value: mixed): boolean { |
| 36 | if (__DEV__) { |
| 37 | try { |
| 38 | testStringCoercion(value); |
| 39 | return false; |
| 40 | } catch (e) { |
| 41 | return true; |
| 42 | } |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | /** @noinline */ |
| 47 | function testStringCoercion(value: mixed) { |
no test coverage detected