mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
リファクタリング
This commit is contained in:
parent
a78bb8c06a
commit
cf2195f318
1 changed files with 0 additions and 19 deletions
|
@ -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()
|
||||
})
|
||||
}
|
Loading…
Reference in a new issue