| constants.js |
Posix glob regex
|
4563 |
- |
| parse.js |
Constants
|
33950 |
- |
| picomatch.js |
Creates a matcher function from one or more glob patterns. The
returned function takes a string to match as its first argument,
and returns true if the string is a match. The returned matcher
function also takes a boolean as the second argument that, when true,
returns an object with additional information.
```js
const picomatch = require('picomatch');
// picomatch(glob[, options]);
const isMatch = picomatch('*.!(*a)');
console.log(isMatch('a.a')); //=> false
console.log(isMatch('a.b')); //=> true
```
@name picomatch
@param {String|Array} `globs` One or more glob patterns.
@param {Object=} `options`
@return {Function=} Returns a matcher function.
@api public
|
9956 |
- |
| scan.js |
/
CHAR_AT, /* @ |
9189 |
- |
| utils.js |
|
1885 |
- |