(thunk)
| 9672 | |
| 9673 | |
| 9674 | const throws= (thunk)=>{ |
| 9675 | try { |
| 9676 | thunk(); |
| 9677 | return false; |
| 9678 | }catch( er) { |
| 9679 | return true; |
| 9680 | } |
| 9681 | }; |
| 9682 | |
| 9683 | /** |
| 9684 | * Exported for convenience of unit testing. Harmless, but not expected |
no outgoing calls
no test coverage detected