(a, b)
| 12938 | } |
| 12939 | |
| 12940 | function hue(a, b) { |
| 12941 | var d = b - a; |
| 12942 | return d ? linear(a, d > 180 || d < -180 ? d - 360 * Math.round(d / 360) : d) : Object(_constant__WEBPACK_IMPORTED_MODULE_0__["default"])(isNaN(a) ? b : a); |
| 12943 | } |
| 12944 | |
| 12945 | function gamma(y) { |
| 12946 | return (y = +y) === 1 ? nogamma : function(a, b) { |