(path: string)
| 647 | } |
| 648 | |
| 649 | function isPathInput(path: string): path is HttpRouter.PathInput { |
| 650 | return path === "*" || path.startsWith("/") |
| 651 | } |
| 652 | |
| 653 | function sameEncoding(left: SchemaAST.AST, right: SchemaAST.AST): boolean { |
| 654 | if (left._tag !== right._tag || left.encoding?.length !== right.encoding?.length) return false |
no outgoing calls
no test coverage detected