mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
4 lines
93 B
TypeScript
4 lines
93 B
TypeScript
export const toHumanPrice = (price: number) => {
|
|
return Number(price / 100).toFixed(2);
|
|
};
|