UNPKG

d3

Version:

A small, free JavaScript library for manipulating documents based on data.

6 lines (5 loc) 124 B
d3.round = function(x, n) { return n ? Math.round(x * Math.pow(10, n)) * Math.pow(10, -n) : Math.round(x); };