price.ts 92 B

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