Skip to content

Commit

Permalink
docs: add docs (QwikDev#2579)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery authored Jan 6, 2023
1 parent df18e50 commit 78f9a13
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/**
* Generated function which returns whether a given request past is a static path.
*
* @param method
* @param url
* @returns
*/
export function isStaticPath(method: string, url: URL) {
if (method !== 'GET') {
return false;
Expand Down

0 comments on commit 78f9a13

Please sign in to comment.