Merge branches 'master' and 'master' of https://github.com/MillenniumEarl/F95API into master
commit
f86a73ed18
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
// Public modules from npm
|
// Public modules from npm
|
||||||
const ky = require("ky-universal").create({
|
const ky = require("ky-universal").create({
|
||||||
throwHttpErrors: false
|
throwHttpErrors: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Modules from file
|
// Modules from file
|
||||||
|
@ -32,7 +32,7 @@ module.exports.isStringAValidURL = function(url) {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @public
|
* @public
|
||||||
|
@ -43,7 +43,7 @@ module.exports.isStringAValidURL = function(url) {
|
||||||
*/
|
*/
|
||||||
module.exports.urlExists = async function (url, checkRedirect) {
|
module.exports.urlExists = async function (url, checkRedirect) {
|
||||||
if (!this.isStringAValidURL(url)) {
|
if (!this.isStringAValidURL(url)) {
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const response = await ky.head(url);
|
const response = await ky.head(url);
|
||||||
|
@ -57,4 +57,4 @@ module.exports.urlExists = async function(url, checkRedirect) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return valid;
|
return valid;
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in New Issue