mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
import type { GlobOptions } from "../_common/glob_to_reg_exp.ts";
|
|
import { join } from "./join.ts";
|
|
import { SEPARATOR } from "./constants.ts";
|
|
import { normalizeGlob } from "./normalize_glob.ts";
|
|
|
|
export type { GlobOptions };
|
|
|
|
/**
|
|
* Like join(), but doesn't collapse "**\/.." when `globstar` is true.
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { joinGlobs } from "@std/path/posix/join-globs";
|
|
* import { assertEquals } from "@std/assert";
|
|
*
|
|
* const path = joinGlobs(["foo", "bar", "**"], { globstar: true });
|
|
* assertEquals(path, "foo/bar/**");
|
|
* ```
|
|
*
|
|
* @param globs The globs to join.
|
|
* @param options The options to use.
|
|
* @returns The joined path.
|
|
*/
|
|
export function joinGlobs(
|
|
globs: string[],
|
|
options: Pick<GlobOptions, "globstar"> = {},
|
|
): string {
|
|
const { globstar = false } = options;
|
|
if (!globstar || globs.length === 0) {
|
|
return join(...globs);
|
|
}
|
|
let joined: string | undefined;
|
|
for (const glob of globs) {
|
|
const path = glob;
|
|
if (path.length > 0) {
|
|
if (!joined) joined = path;
|
|
else joined += `${SEPARATOR}${path}`;
|
|
}
|
|
}
|
|
if (!joined) return ".";
|
|
return normalizeGlob(joined, { globstar });
|
|
}
|