1
2
3
4
5
6
7
8
9
10
11
12
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"]}`;
};
// Forked from @csshsh.weatherDescription
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