Metzploreur/node_modules/@smithy/url-parser/dist-es/index.js
clement callaert 244d45ceb8 Version 2
2023-11-01 17:33:25 +01:00

18 lines
470 B
JavaScript

import { parseQueryString } from "@smithy/querystring-parser";
export const parseUrl = (url) => {
if (typeof url === "string") {
return parseUrl(new URL(url));
}
const { hostname, pathname, port, protocol, search } = url;
let query;
if (search) {
query = parseQueryString(search);
}
return {
hostname,
port: port ? parseInt(port) : undefined,
protocol,
path: pathname,
query,
};
};