source:
node_modules/d3-format/src/precisionRound.js@
e4c61dd
| Last change on this file since e4c61dd was e4c61dd, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 189 bytes | |
| Line | |
|---|---|
| 1 | import exponent from "./exponent.js"; |
| 2 | |
| 3 | export default function(step, max) { |
| 4 | step = Math.abs(step), max = Math.abs(max) - step; |
| 5 | return Math.max(0, exponent(max) - exponent(step)) + 1; |
| 6 | } |
Note:
See TracBrowser
for help on using the repository browser.
