semblance/node_modules/d3-format/src/precisionFixed.js
2025-12-19 19:26:16 +00:00

5 lines
122 B
JavaScript
Executable file

import exponent from "./exponent.js";
export default function(step) {
return Math.max(0, -exponent(Math.abs(step)));
}