@lonu/stc
Version:
A tool for converting OpenApi/Swagger/Apifox into code.
41 lines (40 loc) • 1.16 kB
JavaScript
// Copyright 2018-2025 the Deno authors. MIT license.
// This module is browser compatible.
import { join } from "./join.js";
import { SEPARATOR } from "./constants.js";
import { normalizeGlob } from "./normalize_glob.js";
/**
* 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, options = {}) {
const { globstar = false } = options;
if (!globstar || globs.length === 0) {
return join(...globs);
}
let joined;
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 });
}