blob: ff7a576ddcb162ce558dab1bc4470ec8a9e10525 (
plain)
1
2
3
4
5
6
7
|
export function centsToMicroCents(amount: number) {
return Math.round(amount * 1000000)
}
export function microCentsToCents(amount: number) {
return Math.round(amount / 1000000)
}
|