deno.land / std@0.224.0 / path / join_globs.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 };
/** 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);}
std

Version Info

Tagged at
3 weeks ago