(exponent)
| 129028 | var _continuousJs = require("./continuous.js"); |
| 129029 | var _initJs = require("./init.js"); |
| 129030 | function transformPow(exponent) { |
| 129031 | return function(x) { |
| 129032 | return x < 0 ? -Math.pow(-x, exponent) : Math.pow(x, exponent); |
| 129033 | }; |
| 129034 | } |
| 129035 | function transformSqrt(x) { |
| 129036 | return x < 0 ? -Math.sqrt(-x) : Math.sqrt(x); |
| 129037 | } |