Skip to main content
Module

std/path/posix/mod.ts>fromFileUrl

The Deno Standard Library
Latest
function fromFileUrl
import { fromFileUrl } from "https://deno.land/std@0.224.0/path/posix/mod.ts";

Converts a file URL to a path string.

import { fromFileUrl } from "https://deno.land/std@0.224.0/path/posix/from_file_url.ts";

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

Parameters

url: URL | string

of a file URL

Returns

string