Skip to content

Instantly share code, notes, and snippets.

import test from './test.txt'
class A {
constructor() { }
async loadFile(filename) {
// let data = await (await fetch(filename))
// return data
return fetch(filename)
}
}