1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-09-19 20:14:58 +00:00

removed unused contentType parameter from getFile

This commit is contained in:
boxgaming 2022-04-25 22:48:28 -05:00
parent c9c7d6a25d
commit 43ee813e0b

View file

@ -399,7 +399,7 @@
});
}
async function getFile(path, type, contentType) {
async function getFile(path, type) {
var file = await fetch(path);
if (type == "text") {
return await file.text();