© 2026 Hedgehog Software, LLC
const roundTo = (digits: number, value: number) => Math.round(value * (10 ** digits)) / (10 ** digits)