Files
opencode/cloud/core/src/util/price.ts
2025-08-08 13:24:32 -04:00

4 lines
92 B
TypeScript

export function centsToMicroCents(amount: number) {
return Math.round(amount * 1000000)
}