Skip to content

Instantly share code, notes, and snippets.

@reggi
Created July 28, 2023 15:40
Show Gist options
  • Save reggi/f989eb2b395fa348595a2ec2a7099e95 to your computer and use it in GitHub Desktop.
Save reggi/f989eb2b395fa348595a2ec2a7099e95 to your computer and use it in GitHub Desktop.
export const reservedPathPatterns = [
new URLPattern({ pathname: '/favicon.ico' }),
new URLPattern({ pathname: '/robots.txt' }),
new URLPattern({ pathname: '/sitemap.xml' }),
new URLPattern({ pathname: '/ads.txt' }),
new URLPattern({ pathname: '/security.txt' }),
new URLPattern({ pathname: '/.well-known/*' }),
new URLPattern({ pathname: '/apple-touch-icon.png' }),
new URLPattern({ pathname: '/apple-touch-icon-:size1(\\d+)x:size2.png' }),
new URLPattern({ pathname: '/humans.txt' }),
new URLPattern({ pathname: '/crossdomain.xml' }),
new URLPattern({ pathname: '/browserconfig.xml' }),
new URLPattern({ pathname: '/ads.txt.gz' }),
new URLPattern({ pathname: '/ads.txt.json' }),
new URLPattern({ pathname: '/manifest.json' }),
new URLPattern({ pathname: '/keybase.txt' }),
]
export function reservedPath(url: string | URL) {
for (const pattern of reservedPathPatterns) {
if (pattern.test(url)) {
return true;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment