mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-24 23:04:55 +00:00
4 lines
92 B
TypeScript
4 lines
92 B
TypeScript
export function centsToMicroCents(amount: number) {
|
|
return Math.round(amount * 1000000)
|
|
}
|