UNPKG

@lonu/stc

Version:

A tool for converting OpenApi/Swagger/Apifox into code.

14 lines (13 loc) 416 B
// Copyright 2018-2025 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. import { fromFileUrl } from "../../path/1.1.0/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; }