keep-a-changelog
Version:
Node package to parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.
16 lines • 491 B
TypeScript
/**
* 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.
*/
export declare function toNamespacedPath(path: string): string;
//# sourceMappingURL=to_namespaced_path.d.ts.map