From d5aea3fd59e6b5a4b0c068f62b54689960c624fc Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 5 Feb 2024 13:21:21 -0800 Subject: [PATCH] chore: simplify syntax --- config/shortcodes/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/shortcodes/index.js b/config/shortcodes/index.js index fd770162..de667a74 100644 --- a/config/shortcodes/index.js +++ b/config/shortcodes/index.js @@ -21,8 +21,7 @@ export const img = async ( const isLocal = src.includes('src/assets'); const imageExists = async () => { try { - const isOk = await fetch(src, { method: 'HEAD' }).then((res) => res.ok); - return isOk; + return await fetch(src, { method: 'HEAD' }).then((res) => res.ok); } catch { return false; }