You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
441 B
20 lines
441 B
/*! |
|
* is-extglob <https://github.com/jonschlinkert/is-extglob> |
|
* |
|
* Copyright (c) 2014-2016, Jon Schlinkert. |
|
* Licensed under the MIT License. |
|
*/ |
|
|
|
module.exports = function isExtglob(str) { |
|
if (typeof str !== 'string' || str === '') { |
|
return false; |
|
} |
|
|
|
var match; |
|
while ((match = /(\\).|([@?!+*]\(.*\))/g.exec(str))) { |
|
if (match[2]) return true; |
|
str = str.slice(match.index + match[0].length); |
|
} |
|
|
|
return false; |
|
};
|
|
|