mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
c46143f0ac
* chore: update copyright year * fix --------- Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
18 lines
620 B
TypeScript
18 lines
620 B
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";
|
|
|
|
/** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
|
|
export function joinGlobs(
|
|
globs: string[],
|
|
options: GlobOptions = {},
|
|
): string {
|
|
return isWindows
|
|
? windowsJoinGlobs(globs, options)
|
|
: posixJoinGlobs(globs, options);
|
|
}
|