summaryrefslogtreecommitdiffstats
path: root/src/server/utils/relUrl.ts
blob: 5345ebfd82cafb1a725a0f08b6d3e4758d8abacb (plain) (blame)
1
2
3
4
5
import type { URL } from "node:url";

export default function relUrl(url: URL) {
	return url.pathname + url.search + url.hash;
}