diff --git a/test/tst1.html b/test/tst1.html deleted file mode 100644 index eae18ba..0000000 --- a/test/tst1.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - -
- - - - - - diff --git a/test/tst1.js b/test/tst1.js deleted file mode 100644 index e73068f..0000000 --- a/test/tst1.js +++ /dev/null @@ -1,19 +0,0 @@ - -function init() { - - var url = "https://raw.githubusercontent.com/burakbayramli/alldata/main/globe/g10g1"; - - fetch(url, { - headers: { - 'content-type': 'multipart/byteranges', - 'range': 'bytes=2-5,10-13', - }, - }).then(response => { - if (response.ok) { - return response.text(); - } - }).then(response => { - console.log(response); - }); - -}