import { normalizeLowercaseStringOrEmpty } from "../../../shared/string-coerce.js"; import { compileGlobPatterns, matchesAnyGlobPattern } from "../../glob-pattern.js"; import type { ContextPruningToolMatch } from "./settings.js";
function normalizeGlob(value: string) { return normalizeLowercaseStringOrEmpty(value ?? "");
}