リファクタリング

This commit is contained in:
na2na-p 2022-05-09 16:35:15 +09:00
parent a78bb8c06a
commit cf2195f318

View file

@ -1,7 +1,6 @@
import autobind from 'autobind-decorator';
import Module from '@/module';
import Message from '@/message';
import fetch from 'node-fetch';
import { JSDOM } from 'jsdom';
export default class extends Module {
@ -41,21 +40,3 @@ export default class extends Module {
}
}
}
function testUrl(url: string) {
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest()
xhr.open('GET', url)
xhr.onload = () => {
if (xhr.status === 200) {
resolve(true)
} else {
reject(false)
}
}
xhr.onerror = () => {
reject(false)
}
xhr.send()
})
}