std/path/format.ts

31 lines
1.1 KiB
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
import { isWindows } from "./_os.ts";
import { format as posixFormat } from "./posix/format.ts";
import { format as windowsFormat } from "./windows/format.ts";
import type { ParsedPath } from "./types.ts";
/**
* Generate a path from a {@linkcode ParsedPath} object. It does the
* opposite of {@linkcode https://jsr.io/@std/path/doc/~/parse | parse()}.
*
* @example Usage
* ```ts
* import { format } from "@std/path/format";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(format({ dir: "C:\\path\\to", base: "script.ts" }), "C:\\path\\to\\script.ts");
* } else {
* assertEquals(format({ dir: "/path/to/dir", base: "script.ts" }), "/path/to/dir/script.ts");
* }
* ```
*
* @param pathObject Object with path components.
* @returns The formatted path.
*/
export function format(pathObject: Partial<ParsedPath>): string {
return isWindows ? windowsFormat(pathObject) : posixFormat(pathObject);
}