function fromFileUrlimport { fromFileUrl } from "https://dotland.deno.dev/std@0.110.0/path/win32.ts"; fromFileUrl(url: string | URL): stringConverts a file URL to a path string. Converts a file URL to a path string. import { fromFileUrl } from "./win32.ts"; fromFileUrl("file:///home/foo"); // "\\home\\foo" fromFileUrl("file:///C:/Users/foo"); // "C:\\Users\\foo" fromFileUrl("file://localhost/home/foo"); // "\\\\localhost\\home\\foo" Parametersurl: string | URLof a file URL Returnsstring