(value)
| 453 | |
| 454 | |
| 455 | function willCoercionThrow(value) { |
| 456 | { |
| 457 | try { |
| 458 | testStringCoercion(value); |
| 459 | return false; |
| 460 | } catch (e) { |
| 461 | return true; |
| 462 | } |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | function testStringCoercion(value) { |
| 467 | // If you ended up here by following an exception call stack, here's what's |
no test coverage detected
searching dependent graphs…