JSPM

minimatch-ex

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q36596F
  • License MIT

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

Package Exports

  • minimatch-ex

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (minimatch-ex) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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