You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the path-to-regexp docs, "Backslashes need to be escaped in strings."
But the tester works if I put in something like \d for route and 4 for path. It should only work with \\d, which doesn't work at all. But that's how it is in real express.js routing.
The text was updated successfully, but these errors were encountered:
According to the path-to-regexp docs, "Backslashes need to be escaped in strings."
But the tester works if I put in something like
\d
for route and4
for path. It should only work with\\d
, which doesn't work at all. But that's how it is in real express.js routing.The text was updated successfully, but these errors were encountered: