pax_global_header00006660000000000000000000000064125501601760014515gustar00rootroot0000000000000052 comment=1db8053be10fcbfbe5e38dd671a7b2660556a8e1 is-valid-glob-0.3.0/000077500000000000000000000000001255016017600141465ustar00rootroot00000000000000is-valid-glob-0.3.0/.editorconfig000066400000000000000000000006371255016017600166310ustar00rootroot00000000000000# http://editorconfig.org root = true [*] indent_style = space end_of_line = lf charset = utf-8 indent_size = 2 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false insert_final_newline = false [{,test/}{actual,fixtures}/**] trim_trailing_whitespace = false insert_final_newline = false [templates/**] trim_trailing_whitespace = false insert_final_newline = false is-valid-glob-0.3.0/.gitattributes000066400000000000000000000002001255016017600170310ustar00rootroot00000000000000# Enforce Unix newlines * text eol=lf # binaries *.ai binary *.psd binary *.jpg binary *.gif binary *.png binary *.jpeg binary is-valid-glob-0.3.0/.gitignore000066400000000000000000000002211255016017600161310ustar00rootroot00000000000000*.DS_Store *.sublime-* _gh_pages bower_components node_modules npm-debug.log actual test/actual temp tmp TODO.md vendor .idea benchmark coverage is-valid-glob-0.3.0/.jshintrc000066400000000000000000000004321255016017600157720ustar00rootroot00000000000000{ "asi": false, "boss": true, "curly": true, "eqeqeq": true, "eqnull": true, "esnext": true, "immed": true, "latedef": false, "laxcomma": false, "mocha": true, "newcap": true, "noarg": true, "node": true, "sub": true, "undef": true, "unused": true } is-valid-glob-0.3.0/.travis.yml000066400000000000000000000002271255016017600162600ustar00rootroot00000000000000sudo: false language: node_js node_js: - "0.10" - "0.12" - "0.13" - "iojs" matrix: fast_finish: true allow_failures: - node_js: "0.13" is-valid-glob-0.3.0/.verb.md000066400000000000000000000020521255016017600155030ustar00rootroot00000000000000# {%= name %} {%= badge("fury") %} > {%= description %} 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 {%= include("install-npm", {save: true}) %} ## Usage ```js var isValidGlob = require('{%= name %}'); isValidGlob('foo/*.js'); //=> true ``` **Valid patterns** ```js isValidGlob('a'); isValidGlob('a.js'); isValidGlob('*.js'); isValidGlob(['a', 'b']); //=> all true ``` **Invalid patterns** ```js isValidGlob(); isValidGlob(''); isValidGlob(null); isValidGlob(undefined); isValidGlob(new Buffer('foo')); isValidGlob(['foo', [[]]]); isValidGlob(['foo', [['bar']]]); isValidGlob(['foo', {}]); isValidGlob({}); isValidGlob([]); isValidGlob(['']); //=> all false ``` ## Related projects {%= related(verb.related.list, {remove: name}) %} ## Running tests {%= include("tests") %} ## Contributing {%= include("contributing") %} ## Author {%= include("author") %} ## License {%= copyright() %} {%= license() %} *** {%= include("footer") %} is-valid-glob-0.3.0/LICENSE000066400000000000000000000020731255016017600151550ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) 2015, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. is-valid-glob-0.3.0/README.md000066400000000000000000000053631255016017600154340ustar00rootroot00000000000000# is-valid-glob [![NPM version](https://badge.fury.io/js/is-valid-glob.svg)](http://badge.fury.io/js/is-valid-glob) > Return true if a value is a valid glob pattern or patterns. 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](https://www.npmjs.com/) ```sh $ npm i is-valid-glob --save ``` ## Usage ```js var isValidGlob = require('is-valid-glob'); isValidGlob('foo/*.js'); //=> true ``` **Valid patterns** ```js isValidGlob('a'); isValidGlob('a.js'); isValidGlob('*.js'); isValidGlob(['a', 'b']); //=> all true ``` **Invalid patterns** ```js isValidGlob(); isValidGlob(''); isValidGlob(null); isValidGlob(undefined); isValidGlob(new Buffer('foo')); isValidGlob(['foo', [[]]]); isValidGlob(['foo', [['bar']]]); isValidGlob(['foo', {}]); isValidGlob({}); isValidGlob([]); isValidGlob(['']); //=> all false ``` ## Related projects * [braces](https://github.com/jonschlinkert/braces): Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces… [more](https://github.com/jonschlinkert/braces) * [expand-range](https://github.com/jonschlinkert/expand-range): Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See… [more](https://github.com/jonschlinkert/expand-range) * [fill-range](https://github.com/jonschlinkert/fill-range): Fill in a range of numbers or letters, optionally passing an increment or multiplier to… [more](https://github.com/jonschlinkert/fill-range) * [gulp](http://gulpjs.com): The streaming build system * [glob-fs](https://github.com/jonschlinkert/glob-fs): file globbing for node.js. speedy and powerful alternative to node-glob. * [is-glob](https://github.com/jonschlinkert/is-glob): Returns `true` if the given string looks like a glob pattern. * [micromatch](https://github.com/jonschlinkert/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. Just… [more](https://github.com/jonschlinkert/micromatch) * [vinyl-fs](http://github.com/wearefractal/vinyl-fs): Vinyl adapter for the file system ## Running tests Install dev dependencies: ```sh $ npm i -d && npm test ``` ## Contributing Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/is-valid-glob/issues/new) ## Author **Jon Schlinkert** + [github/jonschlinkert](https://github.com/jonschlinkert) + [twitter/jonschlinkert](http://twitter.com/jonschlinkert) ## License Copyright © 2015 Jon Schlinkert Released under the MIT license. *** _This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on July 11, 2015._is-valid-glob-0.3.0/index.js000066400000000000000000000006301255016017600156120ustar00rootroot00000000000000'use strict'; module.exports = function isValidGlob(glob) { if (typeof glob === 'string' && glob.length > 0) { return true; } if (Array.isArray(glob)) { return glob.length !== 0 && every(glob); } return false; }; function every(arr) { var len = arr.length; while (len--) { if (typeof arr[len] !== 'string' || arr[len].length <= 0) { return false; } } return true; } is-valid-glob-0.3.0/package.json000066400000000000000000000017151255016017600164400ustar00rootroot00000000000000{ "name": "is-valid-glob", "description": "Return true if a value is a valid glob pattern or patterns.", "version": "0.3.0", "homepage": "https://github.com/jonschlinkert/is-valid-glob", "author": "Jon Schlinkert (https://github.com/jonschlinkert)", "repository": "jonschlinkert/is-valid-glob", "bugs": { "url": "https://github.com/jonschlinkert/is-valid-glob/issues" }, "license": "MIT", "files": [ "index.js" ], "main": "index.js", "engines": { "node": ">=0.10.0" }, "scripts": { "test": "mocha" }, "devDependencies": { "mocha": "*" }, "keywords": [ "array", "check", "glob", "match", "pattern", "patterns", "read", "test", "valid", "validate" ], "verb": { "related": { "list": [ "gulp", "vinyl-fs", "is-glob", "micromatch", "braces", "fill-range", "expand-range", "glob-fs" ] } } } is-valid-glob-0.3.0/test.js000066400000000000000000000021011255016017600154550ustar00rootroot00000000000000'use strict'; /* deps: mocha */ var assert = require('assert'); var isValidGlob = require('./'); describe('isValidGlob', function () { it('should return true when the pattern is a valid glob pattern:', function () { assert.equal(isValidGlob('a'), true); assert.equal(isValidGlob('a.js'), true); assert.equal(isValidGlob('*.js'), true); assert.equal(isValidGlob(['a', 'b']), true); assert.equal(isValidGlob(['a/**/*.js', '*.js']), true); }); it('should return false when the pattern is not a valid glob pattern:', function () { assert.equal(isValidGlob(), false); assert.equal(isValidGlob(''), false); assert.equal(isValidGlob({}), false); assert.equal(isValidGlob([]), false); assert.equal(isValidGlob(null), false); assert.equal(isValidGlob(undefined), false); assert.equal(isValidGlob(new Buffer('foo')), false); assert.equal(isValidGlob(['foo', [[]]]), false); assert.equal(isValidGlob(['foo', [['bar']]]), false); assert.equal(isValidGlob(['foo', {}]), false); assert.equal(isValidGlob(['']), false); }); });