UNPKG

238 BJavaScriptView Raw
1import exponent from "./exponent";
2import precisionFixed from "./precisionFixed";
3
4export default function(step, value) {
5 return Math.max(0, Math.max(-8, Math.min(8, Math.floor(exponent(value) / 3))) * 3 - exponent(Math.abs(step)));
6};