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

export default function createUrl(url: string | URL, base?: string | URL | undefined): URL {
	return url instanceof URL ? url : new URL(url, base);
}