(x)
| 128835 | return -Math.log(-x); |
| 128836 | } |
| 128837 | function transformExpn(x) { |
| 128838 | return -Math.exp(-x); |
| 128839 | } |
| 128840 | function pow10(x) { |
| 128841 | return isFinite(x) ? +("1e" + x) : x < 0 ? 0 : x; |
| 128842 | } |
nothing calls this directly
no outgoing calls
no test coverage detected