1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
x47 x47 x47 x848 x848 |
// Copyright 2018-2026 the Deno authors. MIT license.
// Copyright the Browserify authors. MIT License.
import { fromFileUrl } from "@std/path/from-file-url";
/**
* Convert a URL or string to a path.
*
* @param pathUrl A URL or string to be converted.
*
* @returns The path as a string.
*/
export function toPathString(
pathUrl: string | URL,
): string {
return pathUrl instanceof URL ? fromFileUrl(pathUrl) : pathUrl;
}
|