@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
14 lines (13 loc) • 442 B
JavaScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Copyright the Browserify authors. MIT License.
import { fromFileUrl } from "../../path/1.0.0-rc.1/from_file_url.js";
/**
* 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) {
return pathUrl instanceof URL ? fromFileUrl(pathUrl) : pathUrl;
}