Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
import { parseXML } from "https://esm.town/v/stevekrouse/parseXML";
import { normalizeURL } from "https://esm.town/v/stevekrouse/normalizeURL";
import { fetchText } from "https://esm.town/v/stevekrouse/fetchText";
export let fetchXML = (url: string) =>
fetchText(normalizeURL(url))
.then(parseXML);
October 23, 2023