Packages
A spellchecker for Elixir, made with Bun and cspell
Current section
Files
Jump to
Current section
Files
priv/bun/node_modules/cspell-lib/dist/lib/globs/checkFilenameMatchesGlob.js
import { getGlobMatcherForExcluding } from './getGlobMatcher.js';
/**
* @param filename - filename
* @param globs - globs
* @returns true if it matches
*/
export function checkFilenameMatchesExcludeGlob(filename, globs) {
const m = getGlobMatcherForExcluding(globs);
return m.match(filename);
}
//# sourceMappingURL=checkFilenameMatchesGlob.js.map