function toFileUrl
toFileUrl(path: string): URLConverts a path string to a file URL.
import { toFileUrl } from "@std/path/windows/to_file_url"; 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