chore: simplify syntax
This commit is contained in:
parent
887d19b660
commit
d5aea3fd59
1 changed files with 1 additions and 2 deletions
|
@ -21,8 +21,7 @@ export const img = async (
|
||||||
const isLocal = src.includes('src/assets');
|
const isLocal = src.includes('src/assets');
|
||||||
const imageExists = async () => {
|
const imageExists = async () => {
|
||||||
try {
|
try {
|
||||||
const isOk = await fetch(src, { method: 'HEAD' }).then((res) => res.ok);
|
return await fetch(src, { method: 'HEAD' }).then((res) => res.ok);
|
||||||
return isOk;
|
|
||||||
} catch {
|
} catch {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue