UNPKG
d3-jsnext
Version:
latest (3.5.5)
3.5.5
d3, but futuristic
github.com/rollup/d3-jsnext
rollup/d3-jsnext
d3-jsnext
/
src
/
interpolate
/
round.js
10 lines
(7 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
d3_interpolateRound; d3$interpolateRound = d3_interpolateRound;
function
d3_interpolateRound
(
a, b
) { b -= a;
return
function
(
t
) {
return
Math
.
round
(a + b * t); }; }
export
{ d3_interpolateRound };