(path: string)
| 12 | // --------------------------------------------------------------------------- |
| 13 | |
| 14 | const pathPart = (path: string): string => path.split(/[?#]/, 1)[0] ?? ""; |
| 15 | |
| 16 | const isOAuthCallbackReturnTo = (path: string): boolean => pathPart(path) === "/api/oauth/callback"; |
| 17 |
no outgoing calls
no test coverage detected