Package Exports
- is-valid-glob
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 (is-valid-glob) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-valid-glob 
Return true if a value is a valid glob pattern.
This really just checks to make sure that a pattern is either a string or array, and if it's an array it's either empty or consists of only strings.
Install
Install with npm
$ npm i is-valid-glob --saveUsage
var isValidGlob = require('is-valid-glob');
isValidGlob('foo/*.js');
//=> trueValid patterns
isValidGlob('a');
isValidGlob('a.js');
isValidGlob('*.js');
isValidGlob(['a', 'b']);
isValidGlob('');
isValidGlob([]);
//=> all trueInvalid patterns
isValidGlob();
isValidGlob({});
isValidGlob(null);
isValidGlob(undefined);
isValidGlob(new Buffer('foo'));
isValidGlob(['foo', [[]]]);
isValidGlob(['foo', [['bar']]]);
isValidGlob(['foo', {}]);
//=> all falseRelated projects
- braces: Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces… more
- expand-range: Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See… more
- fill-range: Fill in a range of numbers or letters, optionally passing an increment or multiplier to… more
- is-glob: Returns
trueif the given string looks like a glob pattern. - micromatch: Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. Just… more
Running tests
Install dev dependencies:
$ npm i -d && npm testContributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
Jon Schlinkert
License
Copyright © 2015 Jon Schlinkert Released under the MIT license.
This file was generated by verb-cli on July 01, 2015.