std/fs/_to_path_string.ts
Yoshiya Hinosawa 0ce9c2bf7e
experiment
2024-01-31 18:10:15 +09:00

15 lines
412 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. 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
*/
export function toPathString(
pathUrl: string | URL,
): string {
return pathUrl instanceof URL ? fromFileUrl(pathUrl) : pathUrl;
}