()
| 17016 | } |
| 17017 | |
| 17018 | function divergingPow() { |
| 17019 | var scale = powish(transformer()); |
| 17020 | |
| 17021 | scale.copy = function() { |
| 17022 | return copy(scale, divergingPow()).exponent(scale.exponent()); |
| 17023 | }; |
| 17024 | |
| 17025 | return initInterpolator.apply(scale, arguments); |
| 17026 | } |
| 17027 | |
| 17028 | function divergingSqrt() { |
| 17029 | return divergingPow.apply(null, arguments).exponent(0.5); |
nothing calls this directly
no test coverage detected