EphAsad's picture
Upload 9972 files
01fdca8 verified
Raw
History Blame Contribute Delete
178 Bytes
import {hue} from "./color.js";
export default function(a, b) {
var i = hue(+a, +b);
return function(t) {
var x = i(t);
return x - 360 * Math.floor(x / 360);
};
}