chore(medusa-core-utils): Migrate to TS (#2670)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import zeroDecimalCurrencies from "./zero-decimal-currencies"
|
||||
|
||||
const computerizeAmount = (amount: number, currency: string): number => {
|
||||
let divisor = 100
|
||||
|
||||
if (zeroDecimalCurrencies.includes(currency.toLowerCase())) {
|
||||
divisor = 1
|
||||
}
|
||||
|
||||
return Math.round(amount * divisor)
|
||||
}
|
||||
|
||||
export default computerizeAmount
|
||||
Reference in New Issue
Block a user