UNPKG

yahoo-finance2

Version:
49 lines (48 loc) 1.76 kB
"use strict"; // Copyright 2018-2025 the Deno authors. MIT license. // This module is browser compatible. Object.defineProperty(exports, "__esModule", { value: true }); exports.join = join; const assert_path_js_1 = require("../_common/assert_path.js"); const from_file_url_js_1 = require("./from_file_url.js"); const normalize_js_1 = require("./normalize.js"); /** * Join all given a sequence of `paths`,then normalizes the resulting path. * * @example Usage * ```ts * import { join } from "@std/path/posix/join"; * import { assertEquals } from "@std/assert"; * * assertEquals(join("/foo", "bar", "baz/asdf", "quux", ".."), "/foo/bar/baz/asdf"); * assertEquals(join(new URL("file:///foo"), "bar", "baz/asdf", "quux", ".."), "/foo/bar/baz/asdf"); * ``` * * @example Working with URLs * ```ts * import { join } from "@std/path/posix/join"; * import { assertEquals } from "@std/assert"; * * const url = new URL("https://deno.land"); * url.pathname = join("std", "path", "mod.ts"); * assertEquals(url.href, "https://deno.land/std/path/mod.ts"); * * url.pathname = join("//std", "path/", "/mod.ts"); * assertEquals(url.href, "https://deno.land/std/path/mod.ts"); * ``` * * @param path The path to join. This can be string or file URL. * @param paths The paths to join. * @returns The joined path. */ function join(path, ...paths) { if (path === undefined) return "."; if (path instanceof URL) { path = (0, from_file_url_js_1.fromFileUrl)(path); } paths = path ? [path, ...paths] : paths; paths.forEach((path) => (0, assert_path_js_1.assertPath)(path)); const joined = paths.filter((path) => path.length > 0).join("/"); return joined === "" ? "." : (0, normalize_js_1.normalize)(joined); }