Created
July 28, 2023 15:40
-
-
Save reggi/f989eb2b395fa348595a2ec2a7099e95 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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