Files
opencode/packages/console/core/src/util/price.ts
T
2026-03-28 20:16:51 -04:00

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)
}