Merge branches 'master' and 'master' of https://github.com/MillenniumEarl/F95API into master
commit
f86a73ed18
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue