1
2
3
4
5
6
7
8
import { csvToArray } from "https://esm.town/v/byjonathanleung/csvToArray";
import { getDictCSV } from "https://esm.town/v/byjonathanleung/getDictCSV";
export let getDictArray = async () => {
const csvString = await getDictCSV();
const dictArray = csvToArray(csvString);
return dictArray;
}