summaryrefslogtreecommitdiffhomepage
path: root/packages/console/core/src/util/price.ts
blob: abdbca0329aa72fce79454ecd50b49a925bc42e5 (plain)
1
2
3
export function centsToMicroCents(amount: number) {
  return Math.round(amount * 1000000)
}