1
2
3
4
5
6
import { fetch } from "https://esm.town/v/std/fetch";
export const weather = async (city: string): Promise<unknown> => {
let data = await fetch(`https://wttr.in/${city}?format=j1`);
return data.json();
};