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