Skip to main content
Module

x/cliffy/testing/deps.ts>fromFileUrl

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Latest
function fromFileUrl
import { fromFileUrl } from "https://deno.land/x/cliffy@v1.0.0-rc.4/testing/deps.ts";

Converts a file URL to a path string.

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

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

// win32
fromFileUrl("file:///home/foo"); // "\\home\\foo"
fromFileUrl("file:///C:/Users/foo"); // "C:\\Users\\foo"
fromFileUrl("file://localhost/home/foo"); // "\\\\localhost\\home\\foo"

Parameters

url: string | URL

of a file URL

Returns

string