manthan-currency-converter
Version:
An npm library for currency converter
14 lines (11 loc) • 493 B
JavaScript
import Freecurrencyapi from '@everapi/freecurrencyapi-js';
const freecurrencyapi = new Freecurrencyapi('fca_live_yVq8HwNOsw6DHfkUhodRWZRW9sl8mIRgLFf89QHU');
export async function currencyConverter(fromCurrency, toCurrency, units) {
const res = await freecurrencyapi.latest({
base_currency: fromCurrency,
currencies: toCurrency
});
const multiplier = res.data[toCurrency];
const convertedAmount = units * multiplier;
return convertedAmount;
}