1
2
3
4
5
6
7
8
9
import { fetch } from "https://esm.town/v/std/fetch";
export const weatherDescription = async (
params: string[]
): Promise<unknown> => {
let data = await fetch(`https://wttr.in/${params["city"]}?format=j1`);
let jsonData = await data.json();
return `${params["city"]}: ${jsonData["current_condition"][0]["FeelsLikeC"]}, ${jsonData["current_condition"][0]["weatherDesc"][0]["value"]}`;
};