@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
14 lines • 460 B
TypeScript
/**
* Converts a file URL to a path string.
*
* ```ts
* import { fromFileUrl } from "@std/path/windows/from-file-url";
*
* fromFileUrl("file:///home/foo"); // "\\home\\foo"
* fromFileUrl("file:///C:/Users/foo"); // "C:\\Users\\foo"
* fromFileUrl("file://localhost/home/foo"); // "\\\\localhost\\home\\foo"
* ```
* @param url of a file URL
*/
export declare function fromFileUrl(url: URL | string): string;
//# sourceMappingURL=from_file_url.d.ts.map