UNPKG

yahoo-finance2

Version:
34 lines (33 loc) 1.3 kB
"use strict"; // Copyright 2018-2025 the Deno authors. MIT license. // This module is browser compatible. Object.defineProperty(exports, "__esModule", { value: true }); exports.fromFileUrl = fromFileUrl; const from_file_url_js_1 = require("../_common/from_file_url.js"); /** * Converts a file URL to a path string. * * @example Usage * ```ts * import { fromFileUrl } from "@std/path/windows/from-file-url"; * import { assertEquals } from "@std/assert"; * * assertEquals(fromFileUrl("file:///home/foo"), "\\home\\foo"); * assertEquals(fromFileUrl("file:///C:/Users/foo"), "C:\\Users\\foo"); * assertEquals(fromFileUrl("file://localhost/home/foo"), "\\home\\foo"); * ``` * * @param url The file URL to convert. * @returns The path string. */ function fromFileUrl(url) { url = (0, from_file_url_js_1.assertArg)(url); let path = decodeURIComponent(url.pathname.replace(/\//g, "\\").replace(/%(?![0-9A-Fa-f]{2})/g, "%25")).replace(/^\\*([A-Za-z]:)(\\|$)/, "$1\\"); if (url.hostname !== "") { // Note: The `URL` implementation guarantees that the drive letter and // hostname are mutually exclusive. Otherwise it would not have been valid // to append the hostname and path like this. path = `\\\\${url.hostname}${path}`; } return path; }