makearmy-app/node_modules/d3-interpolate/src/number.js

6 lines
110 B
JavaScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
export default function(a, b) {
return a = +a, b = +b, function(t) {
return a * (1 - t) + b * t;
};
}