Module

x/wmill/deps.ts>path.fromFileUrl

Open-source developer platform to turn scripts into workflows and UIs. Fastest workflow engine (5x vs Airflow). Open-source alternative to Airplane and Retool.
Go to Latest
function path.fromFileUrl
import { path } from "https://dotland.deno.dev/x/wmill@v1.323.6/deps.ts";
const { fromFileUrl } = path;

Converts a file URL to a path string.

import { fromFileUrl } from "https://deno.land/std@$STD_VERSION/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