(x)
| 129036 | return x < 0 ? -Math.sqrt(-x) : Math.sqrt(x); |
| 129037 | } |
| 129038 | function transformSquare(x) { |
| 129039 | return x < 0 ? -x * x : x * x; |
| 129040 | } |
| 129041 | function powish(transform) { |
| 129042 | var scale = transform((0, _continuousJs.identity), (0, _continuousJs.identity)), exponent = 1; |
| 129043 | function rescale() { |
nothing calls this directly
no outgoing calls
no test coverage detected