function normalizeimport { normalize } from "https://dotland.deno.dev/std@0.223.0/url/mod.ts"; normalize(url: string | URL): URLNormalize the URL, resolving '..' and '.' segments and multiple '/'s into '//' after protocol and remaining into '/'. ExamplesExample 1 import { normalize } from "https://deno.land/std@0.223.0/url/normalize.ts"; console.log(normalize("https:///deno.land///std//assert//.//mod.ts").href); // Outputs: "https://deno.land/std/path/mod.ts" console.log(normalize("https://deno.land/std/assert/../async/retry.ts").href); // Outputs: "https://deno.land/std/async/retry.ts" Parametersurl: string | URLto be normalized ReturnsURLnormalized URL