()
| 16885 | } |
| 16886 | |
| 16887 | function sequentialPow() { |
| 16888 | var scale = powish(transformer$1()); |
| 16889 | |
| 16890 | scale.copy = function() { |
| 16891 | return copy(scale, sequentialPow()).exponent(scale.exponent()); |
| 16892 | }; |
| 16893 | |
| 16894 | return initInterpolator.apply(scale, arguments); |
| 16895 | } |
| 16896 | |
| 16897 | function sequentialSqrt() { |
| 16898 | return sequentialPow.apply(null, arguments).exponent(0.5); |
nothing calls this directly
no test coverage detected