deno.land / std@0.224.0 / url / normalize.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { normalize as posixNormalize } from "../path/posix/normalize.ts";
/** * Normalizes the URL or URL string, resolving `..` and `.` segments. Multiple * sequential `/`s are resolved into a single `/`. * * @param url URL to be normalized. * @returns Normalized URL. * * @example * ```ts * import { normalize } from "https://deno.land/std@$STD_VERSION/url/normalize.ts"; * * normalize("https:///deno.land///std//assert//.//mod.ts").href; * // "https://deno.land/std/path/mod.ts" * * normalize("https://deno.land/std/assert/../async/retry.ts").href; * // "https://deno.land/std/async/retry.ts" * ``` */export function normalize(url: string | URL): URL { url = new URL(url); url.pathname = posixNormalize(url.pathname); return url;}
std

Version Info

Tagged at
3 weeks ago