Skip to content

fix: path match should support string type #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion cloudflare.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ const handleRequest = async (event) => {

// 循环判断该执行那个
for (let i = 0; i < proxyMyJS.length; i++) {
if (proxyMyJS[i].urlReplace[0].test(pathname)) {
const pathRegex = proxyMyJS[i].urlReplace[0]
const match =
typeof pathRegex === 'string'
? pathRegex === pathname
: pathRegex.test(pathname)

if (match) {
if (method === "OPTIONS") {
return handleResponse(new Response(null, {}), null, proxyMyJS[i])
}
Expand Down