Skip to content

The minimatch extend to support the multi-patterns and negative pattern.

License

Notifications You must be signed in to change notification settings

snowyu/minimatch-ex.js

Repository files navigation

minimatch-ex npm

Build Status Code Climate Test Coverage downloads license

The minimatch extend to support the multi-patterns and negative pattern.

    • matches any number of characters, but not /
  • ? matches a single character, but not /
  • ** matches any number of characters, including /, as long as it's the only thing in a path part
  • {} allows for a comma-separated list of "or" expressions
  • ! at the beginning of a pattern will negate the match

Usage

var minimatch  = require('minimatch-ex')

minimatch('foo.bar', ['*', '*.b*', '!.ignore'])

API

TODO

License

MIT

About

The minimatch extend to support the multi-patterns and negative pattern.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published