nodejs / release-cloudflare-worker

Infra for serving Node.js downloads and documentation.
https://nodejs.org/dist
MIT License
21 stars 5 forks source link

fix: don't treat file paths with 7z extension as directories #81

Closed flakey5 closed 7 months ago

flakey5 commented 7 months ago

Fixes #71

ovflowd commented 7 months ago

@flakey5 what if we transform these two checks (the one for ending with x or being a number into this:

return /^([a-z]|\d+)$/i.test(fileExtension);
flakey5 commented 7 months ago

That'd better probably