Sync all projects
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
let req = (url, options) => http(url, Object.assign({
|
||||
async: false
|
||||
}, options));
|
||||
|
||||
function http(url, options = {}) {
|
||||
if (options?.async === false) return _http(url, options)
|
||||
return new Promise(resolve => _http(url, Object.assign({
|
||||
complete: res => resolve(res)
|
||||
}, options))).catch(err => {
|
||||
console.error(err.name, err.message, err.stack)
|
||||
return {
|
||||
ok: false,
|
||||
status: 500,
|
||||
url
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user