deno.land / std@0.224.0 / path / from_file_url.ts

from_file_url.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { isWindows } from "./_os.ts";import { fromFileUrl as posixFromFileUrl } from "./posix/from_file_url.ts";import { fromFileUrl as windowsFromFileUrl } from "./windows/from_file_url.ts";
/** * Converts a file URL to a path string. * * ```ts * import { fromFileUrl } from "https://deno.land/std@$STD_VERSION/path/from_file_url.ts"; * * // 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 function fromFileUrl(url: string | URL): string { return isWindows ? windowsFromFileUrl(url) : posixFromFileUrl(url);}
std

Version Info

Tagged at
3 weeks ago