std/fs/_to_path_string.ts
Lino Le Van c46143f0ac
chore: update copyright year (#4046)
* chore: update copyright year

* fix

---------

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
2024-01-02 08:11:32 +11:00

15 lines
413 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Copyright the Browserify authors. MIT License.
import { fromFileUrl } from "../path/from_file_url.ts";
/**
* 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;
}