From ae8417cd71388d2b92cc52f5981904ef70dc495c Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 22 Jan 2024 19:35:58 -0500 Subject: [PATCH] Run prettier --- src/fetch.ts | 13 ++++++------- src/helpers/translate.ts | 13 ++++++------- src/helpers/utils.ts | 16 ++++++++-------- src/realms/twitter/routes/status.ts | 2 +- src/worker.ts | 3 ++- 5 files changed, 23 insertions(+), 24 deletions(-) diff --git a/src/fetch.ts b/src/fetch.ts index 0581362..b00ea42 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -138,13 +138,12 @@ export const twitterFetch = async ( if (useElongator && typeof c.env?.TwitterProxy !== 'undefined') { console.log('Fetching using elongator'); const performanceStart = performance.now(); - apiRequest = await withTimeout( - (signal: AbortSignal) => - c.env?.TwitterProxy.fetch(url, { - method: 'GET', - headers: headers, - signal: signal - }) + apiRequest = await withTimeout((signal: AbortSignal) => + c.env?.TwitterProxy.fetch(url, { + method: 'GET', + headers: headers, + signal: signal + }) ); const performanceEnd = performance.now(); console.log(`Elongator request successful after ${performanceEnd - performanceStart}ms`); diff --git a/src/helpers/translate.ts b/src/helpers/translate.ts index 687bf83..38110fc 100644 --- a/src/helpers/translate.ts +++ b/src/helpers/translate.ts @@ -64,13 +64,12 @@ export const translateStatus = async ( tweet.rest_id ?? tweet.legacy?.id_str },destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`; console.log(url, headers); - translationApiResponse = (await withTimeout( - (signal: AbortSignal) => - c.env?.TwitterProxy.fetch(url, { - method: 'GET', - headers: headers, - signal: signal - }) + translationApiResponse = (await withTimeout((signal: AbortSignal) => + c.env?.TwitterProxy.fetch(url, { + method: 'GET', + headers: headers, + signal: signal + }) )) as Response; translationResults = (await translationApiResponse.json()) as TranslationPartial; diff --git a/src/helpers/utils.ts b/src/helpers/utils.ts index 7827bbf..1505cbe 100644 --- a/src/helpers/utils.ts +++ b/src/helpers/utils.ts @@ -58,11 +58,11 @@ export async function withTimeout( } export const formatNumber = (num: number) => { - if (num >= 1e6) { - return (num / 1e6).toFixed(2) + 'M'; - } else if (num >= 1e3) { - return (num / 1e3).toFixed(1) + 'K'; - } else { - return num.toString(); - } -}; \ No newline at end of file + if (num >= 1e6) { + return (num / 1e6).toFixed(2) + 'M'; + } else if (num >= 1e3) { + return (num / 1e3).toFixed(1) + 'K'; + } else { + return num.toString(); + } +}; diff --git a/src/realms/twitter/routes/status.ts b/src/realms/twitter/routes/status.ts index d37818e..154d1fb 100644 --- a/src/realms/twitter/routes/status.ts +++ b/src/realms/twitter/routes/status.ts @@ -58,7 +58,7 @@ export const statusRequest = async (c: Context) => { } else if (Constants.GALLERY_DOMAINS.includes(url.hostname)) { console.log('Gallery embed request'); flags.gallery = true; - } else if (Constants.FORCE_MOSAIC_DOMAINS.includes(url.hostname)) { + } else if (Constants.FORCE_MOSAIC_DOMAINS.includes(url.hostname)) { console.log('Force mosaic request'); flags.forceMosaic = true; } else if (prefix === 'dl' || prefix === 'dir') { diff --git a/src/worker.ts b/src/worker.ts index e20dbf4..017a793 100644 --- a/src/worker.ts +++ b/src/worker.ts @@ -10,7 +10,8 @@ import { twitter } from './realms/twitter/router'; import { cacheMiddleware } from './caches'; const noCache = 'max-age=0, no-cache, no-store, must-revalidate'; -const embeddingClientRegex = /(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare|revoltchat|preview)/gi; +const embeddingClientRegex = + /(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare|revoltchat|preview)/gi; /* This is the root app which contains route trees for multiple "realms".