Current section

Files

Jump to
spellweaver priv bun node_modules cspell-lib dist lib globs checkFilenameMatchesGlob.js
Raw

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