Small fixes
A selection of 80 fixes from 174 pull requests.
76.A URI matched as a path
An HTTPS resource template retained its origin during registration but lost it during lookup. Prefix both inputs with / so the router treats the full URI consistently.
11233 router.on("GET", uri as any, value) router.on("GET", `/${uri}`, value)}const find = (uri: string) => router.find("GET", uri)const find = (uri: string) => router.find("GET", `/${uri}`)