Skip to main content
Module

std/path/posix.ts>fromFileUrl

Deno standard library
Go to Latest
function fromFileUrl
import { fromFileUrl } from "https://deno.land/std@0.52.0/path/posix.ts";

Converts a file URL to a path string.

 fromFileUrl("file:///home/foo"); // "/home/foo"

Note that non-file URLs are treated as file URLs and irrelevant components are ignored.

Parameters

url: string | URL

Returns

string