Spaces:
Sleeping
Sleeping
File size: 307 Bytes
e964b12 |
1 2 3 4 5 6 7 8 9 10 11 12 |
async function fetch_csv() {
try {
const response = await fetch('../static/final_merged.csv');
const csvData = await response.text();
return csvData;
} catch (error) {
console.error('Failed to load data.csv', error);
throw error;
}
}
export { fetch_csv } |