1
2
3
4
5
6
7
8
9
10
11
12
import { formatCurrency } from "https://esm.town/v/frankdilo/formatCurrency";
import { convertCurrency } from "https://esm.town/v/frankdilo/convertCurrency";
export async function emailMeExchangeRate() {
const rate = await convertCurrency("eur");
const formattedRate = formatCurrency(rate, 3, "EUR");
const info = `$1 = ${formattedRate}`;
console.email({
html: "",
subject: `Exchange rate: ${info}`,
});
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023