mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
29 lines
967 B
TypeScript
Executable File
29 lines
967 B
TypeScript
Executable File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
import { join as posixJoin } from "@std/path/posix/join";
|
|
|
|
/**
|
|
* Join a base `URL` and a series of `paths`, then normalizes the resulting URL.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* import { join } from "@std/url/join";
|
|
*
|
|
* console.log(join("https://deno.land/", "std", "path", "mod.ts").href);
|
|
* // Outputs: "https://deno.land/std/path/mod.ts"
|
|
*
|
|
* console.log(join("https://deno.land", "//std", "path/", "/mod.ts").href);
|
|
* // Outputs: "https://deno.land/path/mod.ts"
|
|
* ```
|
|
*
|
|
* @param url the base URL to be joined with the paths and normalized
|
|
* @param paths array of path segments to be joined to the base URL
|
|
* @returns a complete URL string containing the base URL joined with the paths
|
|
*/
|
|
export function join(url: string | URL, ...paths: string[]): URL {
|
|
url = new URL(url);
|
|
url.pathname = posixJoin(url.pathname, ...paths);
|
|
return url;
|
|
}
|