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