Minimatch but for collections of minimatcher matchers.
npm install matcher-collection``sh`
yarn add matcher-collection
`js
const MatcherCollection = require('matcher-collection')
const m = new MatcherCollection([
'tests/',
'*/.js',
]);
m.match('tests/foo.js') // => true
m.match('foo.js') // => false
m.mayContain('tests') // => true
m.mayContain('foo') // => false
``