aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/franz-custom-website/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'uncompressed/franz-custom-website/index.js')
-rw-r--r--uncompressed/franz-custom-website/index.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/uncompressed/franz-custom-website/index.js b/uncompressed/franz-custom-website/index.js
deleted file mode 100644
index 62f4218..0000000
--- a/uncompressed/franz-custom-website/index.js
+++ /dev/null
@@ -1,17 +0,0 @@
1"use strict";
2
3module.exports = Franz => class CustomWebsite extends Franz {
4 async validateUrl(url) {
5 try {
6 const resp = await window.fetch(url, {
7 method: 'GET'
8 });
9 return !resp.status.toString().startsWith('4');
10 } catch (err) {
11 console.error(err);
12 }
13
14 return false;
15 }
16
17}; \ No newline at end of file