@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
18 lines • 530 B
TypeScript
/**
* Converts a file URL to a path string.
*
* ```ts
* import { fromFileUrl } from "@std/path/from-file-url";
*
* // 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"
* ```
* @param url of a file URL
*/
export declare function fromFileUrl(url: string | URL): string;
//# sourceMappingURL=from_file_url.d.ts.map