We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8cba28 commit fed4192Copy full SHA for fed4192
packages/event-handler/src/rest/utils.ts
@@ -20,7 +20,7 @@ import {
20
} from './constants.js';
21
22
export function getPathString(path: Path): string {
23
- return isString(path) ? path : path.source.replace(/\\\//g, '/');
+ return isString(path) ? path : path.source.replaceAll(/\\\//g, '/');
24
}
25
26
export function compilePath(path: Path): CompiledRoute {
0 commit comments