deno.land / std@0.224.0 / fs / _to_path_string.ts

_to_path_string.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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;}
std

Version Info

Tagged at
3 weeks ago