Files
ScriptVPS/vps-monitor/frontend/node_modules/is-extglob/index.js
jeanotx32 d799ae503c
Some checks failed
Build and Push Docker Images / docker (push) Failing after 11s
Feat : login sys
2026-05-18 22:44:02 -04:00

21 lines
441 B
JavaScript

/*!
* 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;
};