1
2
3
4
5
6
7
import { fetch } from "https://esm.town/v/std/fetch";
export let getDictCSV = async () => {
const CSV_URL = "https://docs.google.com/spreadsheets/d/e/2PACX-1vSaIstzxO8d2J37TZjcFQfk4cN3unhuq_e-SD5L6pLvwSxrg-h836e8uIyWmuxjsG3LIbcxKLxO_8aZ/pub?output=csv";
const csvString = (await fetch(CSV_URL)).text();
return csvString;
}
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