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