Merge branches 'master' and 'master' of https://github.com/MillenniumEarl/F95API into master

pull/11/head
MillenniumEarl 2020-10-09 16:53:31 +02:00
commit f86a73ed18
1 changed files with 23 additions and 23 deletions

View File

@ -2,7 +2,7 @@
// Public modules from npm
const ky = require("ky-universal").create({
throwHttpErrors: false
throwHttpErrors: false,
});
// Modules from file
@ -32,7 +32,7 @@ module.exports.isStringAValidURL = function(url) {
} catch (err) {
return false;
}
}
};
/**
* @public
@ -43,7 +43,7 @@ module.exports.isStringAValidURL = function(url) {
*/
module.exports.urlExists = async function (url, checkRedirect) {
if (!this.isStringAValidURL(url)) {
return false
return false;
}
const response = await ky.head(url);
@ -57,4 +57,4 @@ module.exports.urlExists = async function(url, checkRedirect) {
}
return valid;
}
};