Files
RoboCommander/node_modules/d3-interpolate/src/number.js

6 lines
100 B
JavaScript
Raw Normal View History

2026-04-05 16:14:49 -04:00
export default function(a, b) {
return a = +a, b -= a, function(t) {
return a + b * t;
};
}