Files
x-stake/app/javascript/src/utils/fiatMoney.ts
2021-08-15 18:02:06 -03:00

6 lines
124 B
TypeScript

export const centsToUnit = (value?: number | null) => {
if (!value) return "0.00";
return (value / 100).toFixed(2);
};