// Copyright 2018-2025 the Deno authors. MIT license.
// This module is browser compatible.
import { common as _common } from "../_common/common.ts";
import { SEPARATOR } from "./constants.ts";
/**
* Determines the common path from a set of paths for Windows systems.
*
* @example Usage
* ```ts
* import { common } from "@std/path/windows/common";
* import { assertEquals } from "@std/assert";
*
* const path = common([
* "C:\\foo\\bar",
* "C:\\foo\\baz",
* ]);
* assertEquals(path, "C:\\foo\\");
* ```
*
* @param paths The paths to compare.
* @returns The common path.
*/
export function common(paths: string[]): string {
return _common(paths, SEPARATOR);
}
|