1
2
3
4
5
6
7
8
9
10
11
12
import { easyAQI } from "https://esm.town/v/stevekrouse/easyAQI?v=3";
export async function aqi(location = "Berlin") {
const data = await easyAQI({ location });
if (data.severity.includes("Unhealthy")) {
console.email(
"Air Quality: " + data.severity,
`AQI in ${location} is ${data.aqi}`
);
}
return data;
}