mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
388800f301
Co-authored-by: Nathan Whitaker <nathan@deno.com> Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
// 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.
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { fromFileUrl } from "@std/path/from-file-url";
|
|
* import { assertEquals } from "@std/assert/assert-equals";
|
|
*
|
|
* if (Deno.build.os === "windows") {
|
|
* assertEquals(fromFileUrl("file:///home/foo"), "\\home\\foo");
|
|
* assertEquals(fromFileUrl("file:///C:/Users/foo"), "C:\\Users\\foo");
|
|
* assertEquals(fromFileUrl("file://localhost/home/foo"), "\\home\\foo");
|
|
* } else {
|
|
* assertEquals(fromFileUrl("file:///home/foo"), "/home/foo");
|
|
* }
|
|
* ```
|
|
*
|
|
* @param url The file URL to convert to a path.
|
|
* @returns The path string.
|
|
*/
|
|
export function fromFileUrl(url: string | URL): string {
|
|
return isWindows ? windowsFromFileUrl(url) : posixFromFileUrl(url);
|
|
}
|