Skip to main content
Module

std/node/url.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.120.0/node/url.ts";

Functions

This function ensures the correct decodings of percent-encoded characters as well as ensuring a cross-platform valid absolute path string.

The URL object has both a toString() method and href property that return string serializations of the URL. These are not, however, customizable in any way. This method allows for basic customization of the output.

The url.urlParse() method takes a URL string, parses it, and returns a URL object.

This function ensures that filepath is resolved absolutely, and that the URL control characters are correctly encoded when converting into a File URL.