yahoo-finance2
Version:
JS API for Yahoo Finance
24 lines (23 loc) • 677 B
JavaScript
;
// Copyright 2018-2025 the Deno authors. MIT license.
// This module is browser compatible.
Object.defineProperty(exports, "__esModule", { value: true });
exports.toNamespacedPath = toNamespacedPath;
/**
* Converts a path to a namespaced path. This function returns the path as is on posix.
*
* @example Usage
* ```ts
* import { toNamespacedPath } from "@std/path/posix/to-namespaced-path";
* import { assertEquals } from "@std/assert";
*
* assertEquals(toNamespacedPath("/home/foo"), "/home/foo");
* ```
*
* @param path The path.
* @returns The namespaced path.
*/
function toNamespacedPath(path) {
// Non-op on posix systems
return path;
}