UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

25 lines (17 loc) 501 B
# MatcherCollection [![Build Status](https://travis-ci.org/stefanpenner/matcher-collection.svg?branch=master)](https://travis-ci.org/stefanpenner/matcher-collection) Minimatch but for collections of minimatcher matchers. ## Install ```sh npm install matcher-collection ``` ## Examples ```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 ```