mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
d102a10235
* refactor: import from `@std/assert` * update
43 lines
1.4 KiB
TypeScript
43 lines
1.4 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 { isWindows } from "./_os.ts";
|
|
import { joinGlobs as posixJoinGlobs } from "./posix/join_globs.ts";
|
|
import { joinGlobs as windowsJoinGlobs } from "./windows/join_globs.ts";
|
|
|
|
export type { GlobOptions };
|
|
|
|
/**
|
|
* Joins a sequence of globs, then normalizes the resulting glob.
|
|
*
|
|
* Behaves like {@linkcode https://jsr.io/@std/path/doc/~/join | join()}, but
|
|
* doesn't collapse `**\/..` when `globstar` is true.
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { joinGlobs } from "@std/path/join-globs";
|
|
* import { assertEquals } from "@std/assert";
|
|
*
|
|
* if (Deno.build.os === "windows") {
|
|
* assertEquals(joinGlobs(["foo", "bar", "..", "baz"]), "foo\\baz");
|
|
* assertEquals(joinGlobs(["foo", "**", "bar", "..", "baz"], { globstar: true }), "foo\\**\\baz");
|
|
* } else {
|
|
* assertEquals(joinGlobs(["foo", "bar", "..", "baz"]), "foo/baz");
|
|
* assertEquals(joinGlobs(["foo", "**", "bar", "..", "baz"], { globstar: true }), "foo/**\/baz");
|
|
* }
|
|
* ```
|
|
*
|
|
* @param globs Globs to be joined and normalized.
|
|
* @param options Glob options.
|
|
* @returns The joined and normalized glob string.
|
|
*/
|
|
export function joinGlobs(
|
|
globs: string[],
|
|
options: GlobOptions = {},
|
|
): string {
|
|
return isWindows
|
|
? windowsJoinGlobs(globs, options)
|
|
: posixJoinGlobs(globs, options);
|
|
}
|