Skip to main content
Home
This release is 5 versions behind 1.1.4 — the latest version of @std/path. Jump to latest

@std/path@1.0.9
Built and signed on GitHub Actions

Utilities for working with file system paths

This package works with Cloudflare Workers, Deno, Browsers
This package works with Cloudflare Workers
This package works with Deno
This package works with Browsers
JSR Score
94%
Published
9 months ago (1.0.9)
Package root>format.ts
// Copyright 2018-2025 the Deno authors. 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); }