ember-material-icons
Version:
Google Material icons for your ember-cli app
25 lines (17 loc) • 501 B
Markdown
Minimatch but for collections of minimatcher matchers.
```sh
npm install matcher-collection
```
```js
let m = new MatcherCollection([
'tests/',
'**/*.js',
]);
m.match('tests/foo.js') // => true
m.match('foo.js') // => false
m.mayContain('tests') // => true
m.mayContain('foo') // => false
```