Nexus / node_modules /d3-format /src /precisionFixed.js
Severian's picture
Upload 7464 files
c211499
raw
history blame contribute delete
122 Bytes
import exponent from "./exponent.js";
export default function(step) {
return Math.max(0, -exponent(Math.abs(step)));
}