import { fromFileUrl } from "https://deno.land/std@0.172.0/path/win32.ts";
Converts a file URL to a path string.
import { fromFileUrl } from "https://deno.land/std@0.172.0/path/win32.ts";
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