Files
RoboCommander/node_modules/d3-interpolate/src/date.js
2026-04-05 16:14:49 -04:00

7 lines
134 B
JavaScript

export default function(a, b) {
var d = new Date;
return a = +a, b -= a, function(t) {
return d.setTime(a + b * t), d;
};
}