matcher-collection

Minimatch but for collections of minimatcher matchers.

ISC 11 个版本
安装
npm install matcher-collection
yarn add matcher-collection
pnpm add matcher-collection
bun add matcher-collection
README

MatcherCollection Build Status Build status

Minimatch but for collections of minimatcher matchers.

Install

yarn add matcher-collection

Examples

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
版本列表
2.0.1 2019-10-28
2.0.0 2019-03-09
1.1.2 2019-02-04
1.1.1 2019-02-03
1.1.0 2019-02-03
1.0.5 2017-09-15
1.0.4 2016-08-05
1.0.3 2016-08-05
1.0.2 2016-06-27
1.0.1 2015-11-08
1.0.0 2015-09-21