Skip to main content
Module

std/path/posix/format.ts

The Deno Standard Library
Go to Latest
File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { _format, assertArg } from "../_common/format.ts";import type { FormatInputPathObject } from "../_interface.ts";
/** * Generate a path from `FormatInputPathObject` object. * @param pathObject with path */export function format(pathObject: FormatInputPathObject): string { assertArg(pathObject); return _format("/", pathObject);}