1
0
forked from keinBot/cuffeo
This commit is contained in:
Flummi
2018-09-08 12:43:55 +02:00
parent 7da5f9c653
commit 67238858bd
3 changed files with 14 additions and 3 deletions

9
test.mjs Normal file
View File

@@ -0,0 +1,9 @@
import fetch from "./src/inc/fetch";
fetch("https://pr0.totally.rip/api/v2/item?file=2018/09/02/9a8b714642a7d9a9.mp4")
//fetch("https://srv.fail")
.then(res => res.text())
.then(res => console.log(res))
.catch(err => {
console.log("error", err);
});