UNPKG

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