mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at typescript-check 4 lines 144 B view raw
1export function isNetworkError(e: unknown) { 2 const str = String(e) 3 return str.includes('Abort') || str.includes('Network request failed') 4}