Initial commit
[yaffs-website] / node_modules / is-glob / index.js
1 /*!
2  * is-glob <https://github.com/jonschlinkert/is-glob>
3  *
4  * Copyright (c) 2014-2015, Jon Schlinkert.
5  * Licensed under the MIT License.
6  */
7
8 var isExtglob = require('is-extglob');
9
10 module.exports = function isGlob(str) {
11   return typeof str === 'string'
12     && (/[*!?{}(|)[\]]/.test(str)
13      || isExtglob(str));
14 };