8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
export function centsToMicroCents(amount: number) {
|
|
return Math.round(amount * 1000000)
|
|
}
|
|
|
|
export function microCentsToCents(amount: number) {
|
|
return Math.round(amount / 1000000)
|
|
}
|