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.2 KiB
TypeScript
43 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 { normalize } from "./normalize.ts";
|
|
import { SEPARATOR_PATTERN } from "./constants.ts";
|
|
|
|
export type { GlobOptions };
|
|
|
|
/**
|
|
* Like normalize(), but doesn't collapse "**\/.." when `globstar` is true.
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { normalizeGlob } from "@std/path/windows/normalize-glob";
|
|
* import { assertEquals } from "@std/assert";
|
|
*
|
|
* const normalized = normalizeGlob("**\\foo\\..\\bar", { globstar: true });
|
|
* assertEquals(normalized, "**\\bar");
|
|
* ```
|
|
*
|
|
* @param glob The glob pattern to normalize.
|
|
* @param options The options for glob pattern.
|
|
* @returns The normalized glob pattern.
|
|
*/
|
|
export function normalizeGlob(
|
|
glob: string,
|
|
{ globstar = false }: GlobOptions = {},
|
|
): string {
|
|
if (glob.match(/\0/g)) {
|
|
throw new Error(`Glob contains invalid characters: "${glob}"`);
|
|
}
|
|
if (!globstar) {
|
|
return normalize(glob);
|
|
}
|
|
const s = SEPARATOR_PATTERN.source;
|
|
const badParentPattern = new RegExp(
|
|
`(?<=(${s}|^)\\*\\*${s})\\.\\.(?=${s}|$)`,
|
|
"g",
|
|
);
|
|
return normalize(glob.replace(badParentPattern, "\0")).replace(/\0/g, "..");
|
|
}
|