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
/
format
/
precision.js
5 lines
(4 loc)
•
130 B
JavaScript
View Raw
1
2
3
4
5
function
d3_format_precision
(
x, p
) {
return
p - (x ?
Math
.
ceil
(
Math
.
log
(x) /
Math
.
LN10
) :
1
); }
export
{ d3_format_precision };