function toFileUrl
toFileUrl(path: string): URLConverts a path string to a file URL.
import { toFileUrl } from "@std/path/to_file_url"; // posix toFileUrl("/home/foo"); // new URL("file:///home/foo") // win32 toFileUrl("\\home\\foo"); // new URL("file:///home/foo") toFileUrl("C:\\Users\\foo"); // new URL("file:///C:/Users/foo") toFileUrl("\\\\127.0.0.1\\home\\foo"); // new URL("file://127.0.0.1/home/foo")
Parameters
path: stringto convert to file URL