Presupuestador_web/shared/lib/utilities/helpers.ts

5 lines
158 B
TypeScript
Raw Normal View History

2024-08-28 18:38:20 +00:00
export const adjustPrecision = ({ amount, scale }: { amount: number; scale: number }) => {
const factor = 10 ** scale;
return Number(amount) / factor;
};