UNPKG

rjweb-server

Version:

Easy and Robust Way to create a Web Server with Many Easy-to-use Features in NodeJS

11 lines (10 loc) 264 B
export type URL = { href: string; path: string; query: string; fragments: string; }; /** * Efficiently parse URL Strings into a Object, also makes the path OpenAPI compatible * @since 7.8.8 */ export default function parseURL(path: string): URL;