source: node_modules/d3-format/src/precisionRound.js

Last change on this file was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 189 bytes
Line 
1import exponent from "./exponent.js";
2
3export 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.